错误描述:
使用表单实现Rest风格的PUT和DELETE请求时,被method=RequestMethod.POST的Controller捕获,显示Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported]
控制台报错.png
解决办法:在application.properties中添加
spring.mvc.hiddenmethod.filter.enabled=true
网友评论