SpringBoot@DeleteMapping(/xxx/{id})请求报405的解决
SpringBoot@DeleteMapping(/xxx/{id})请求报405
在学习SpringBoot2.x实现 restful 的delete操作时发现在表单中添加
<input type="hidden" name="_method" value="delete"/>
后台用@deleteMapping(/xxx/{id})这种方式会报405(不允许的访问方式)
各种百度,后来发现在 Spring Boot 的 META-INF/spring-configuration-metadata.json 配置文件中,默认是关闭Spring 的 hiddenmethod 过滤器的
然后我们需要在springBoot的配置文件中将它手动开启即可;
spring.mvc.hiddenmethod.filter.enabled=true
SpringBoot---@DeleteMapping
@DeleteMapping
在编写代码时引用了*@DeleteMapping*注解
@DeleteMapping(value = "/remove/{courseNo}" ) public String remove(@PathVariable("courseNo") String courseNo){ courseService.removeCourseByNo(courseNo); return "redirect:/course/list";
但运行程序页面无结果返回,出现POST错误。经百度查询,Spring系统配置hiddenmethod过滤器默认是False,解决结果在application.properties添加一行代码,启用过滤器:
spring.mvc.hiddenmethod.filter.enabled=true
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
java:程序包com.xxx.xxx不存在报错万能解决办法
这篇文章主要给大家介绍了关于java:程序包com.xxx.xxx不存在报错万能解决办法,这个问题曾逼疯初学者的我,不过弄清楚原理后就很简单了,文中通过图文介绍的非常详细,需要的朋友可以参考下2023-12-12SpringCloud之服务注册与发现Spring Cloud Eureka实例代码
这篇文章主要介绍了SpringCloud之服务注册与发现Spring Cloud Eureka实例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-04-04
最新评论