springboot在测试连接数据时,提示错误:Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET’ not supported]
意思是不支持get方法。也就是说当前方法是post类型,而我们用一个get连接请求了这个方法,当然会报错。
大概率是方法前的注解类型写错了
将@PostMapping
改为 @GetMapping
或者@RequestMapping
即可。文章来源地址https://www.toymoban.com/news/detail-719980.html
文章来源:https://www.toymoban.com/news/detail-719980.html
到了这里,关于SpringBoot提示错误:HttpRequestMethodNotSupportedException: Request method ‘GET‘ not supported的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!