在使用SSM编写时发现put请求的前端传输的参数无法自动填充到参数当中,Tomcat对于 put方法的支持并不是很好,在web.xml当中特别配置put过滤器即可一下即可
Tomcat对于请求题中的数据会先将数据封装在一个map当中,通过request.getParamter(“属性名”)的方法获取,通过打印请求的数据发现为null,Tomcat默认看到PUT请求不会封装数据为map只有post请求默认才会封装,需要手动设置将PUT请求也加入到封装数据的请求类型当中
<!--put请求参数-->
<filter>
<filter-name>HttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HttpPutFormContentFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>