Spring MVC Restful Method PUT @RequestParam NOT FOUND
Spirng MVC默认不支持 PUT请求带参数
Since Spring 3.1, this is resolved using org.springframework.web.filter.HttpPutFormContentFilter.
<filter> <filter-name>httpPutFormContentFilter</filter-name> <filter-class>org.springframework.web.filter.HttpPutFormContentFilter</filter-class> </filter> <filter-mapping> <filter-name>httpPutFormContentFilter</filter-name> <servlet-name>rest</servlet-name> </filter-mapping>