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>

 

 

 

 

出自 :http://stackoverflow.com/questions/5894270/springmvc-is-not-recognizing-request-body-parameters-if-using-put

posted @ 2013-11-30 17:59  Shaman  阅读(575)  评论(0编辑  收藏  举报