springboot接收delete或者put方法体参数
Posted 青之枫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot接收delete或者put方法体参数相关的知识,希望对你有一定的参考价值。
springboot默认配置了hiddenHttpMethodFilter(可以在springboot启动日志中看到)
因为hiddenHttpMethodFilter只会拦截get和post请求方式
所以请求方式为post
在提交请求参数里增加一个_method 参数 值为put或者delete,就可以访问到put或者delete接口了
以上是关于springboot接收delete或者put方法体参数的主要内容,如果未能解决你的问题,请参考以下文章
Springboot 2.0.2 - 解决 PUT 和 DELETE 的 CORS
springboot使用SpringBoot基础HTTP接口GET|POST|DELETE|PUT请求
使用Spring boot开发RestFul 风格项目PUT/DELETE方法不起作用
如何在 Spring Security 中启用 POST、PUT 和 DELETE 方法