进行添加操作时,执行getmapping报错Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported]
时间: 2023-11-21 08:57:24 浏览: 263
org.springframework.web.jar
根据提供的引用,错误提示是“Request method 'PUT' not supported”,这意味着当前方法是不支持PUT类型的请求,而我们用了一个PUT类型的请求,因此会报错。解决方法是将@GetMapping或@PostMapping改为@PutMapping或@RequestMapping即可。
以下是一个使用@PutMapping进行添加操作的示例:
```java
@RestController
@RequestMapping("/example")
public class ExampleController {
private List<String> list = new ArrayList<>();
@PutMapping("/add")
public String addToList(@RequestBody String item) {
list.add(item);
return "Item added successfully";
}
}
```
阅读全文