Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported] @GetMapping("/mymessage/{adid}") public List<Administrators> findById(@PathVariable Integer adid) { return administratorsservice.list(); }
时间: 2024-02-20 22:02:11 浏览: 132
根据报错信息,可以看出是请求方式不匹配导致的。使用@GetMapping注解表示这个接口只接受GET请求,而您的代码中调用了administratorsservice.list(),这个方法是用来查询所有的Administrators记录的,所以应该使用查询接口(比如findAll())。
您可以尝试将@GetMapping注解改成@PostMapping(或其他适合的请求方式),或者将接口实现改成管理员信息的查询接口,比如:
```java
@GetMapping("/mymessage/{adid}")
public Administrators findById(@PathVariable Integer adid) {
return administratorsservice.getById(adid);
}
```
这样就可以通过GET请求获取指定id的管理员信息了。如果您需要获取所有管理员信息,可以写一个新的接口,比如:
```java
@GetMapping("/all-admins")
public List<Administrators> findAll() {
return administratorsservice.list();
}
```
这样就可以通过GET请求获取所有管理员信息了。
相关问题
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method GET not supported
这个错误通常是因为你的请求方法不被服务器支持,比如你发送了一个 GET 请求,但是服务器只支持 POST 请求。你需要确认一下你的请求方法是否正确,并且检查一下服务器的接口文档,了解服务器支持的请求方法。如果你确定请求方法正确,但是还是出现这个错误,可能是服务器出现了故障,你需要联系服务器管理员进行排查。
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET’ not supported
Http请求中包含了请求方法,如GET、POST、PUT、DELETE等等。当客户端发送一个请求时,如果服务器端没有对应的请求处理方法,就会抛出HttpRequestMethodNotSupportedException异常,提示客户端请求方法不支持。
解决此问题的方法是检查客户端发出的请求方法是否正确,如果不正确,需要更改请求方法。另外也需要检查服务器端是否已经实现了相应的请求处理方法。
阅读全文
相关推荐
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![jar](https://img-home.csdnimg.cn/images/20210720083455.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)