在提交表单数据的时候,由于控制器controller中mapper处理头映射错误,导致出现PUT405错误代码。
修复的方法有:
①修改URL映射链接和映射方式
//将Postmapping修改为PutMapping
@PostMapping("/xxxxx") → @PutMapping("/xxxxx")
public xxxxx ways(@RequestBody xxx){
@AutoWired
private XXXXX xxxxx;
xxxxx
}
②如果URL没问题的话,可能是没有添加springboot的全局扫描,导致映射失败.
进入SpringbootApplication代码中查看是否添加全局扫描@MapperScan(“com.xxxxx.mapper”)文章来源:https://www.toymoban.com/news/detail-512317.html
@SpringBootApplication
@MapperScan("com.xxxxx.mapper") //这个就是全局扫描
public class XxxxxSpringbootApplication {
public static void main(String[] args) {
SpringApplication.run(XxxxxSpringbootApplication.class, args);
}
}
随后重新运行再提交表单就成功将数据存入数据库了!文章来源地址https://www.toymoban.com/news/detail-512317.html
到了这里,关于解决错误Whitelabel Error Page This application has no explicit mapping for /error(Method Not Allowed405)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!