这两天研究spring mvc 的restful功能,写了一个demo小程序。get,post,delete都正常通过了测试,唯独put请求犯难了。这个请求服务端仅能解析@PathVariable注解的变量,而请求体里的参数根本无法正常解析。
还有一种情况,如果变量有@RequestParam或者@RequestBody注解,那么浏览器居然发不出Put请求,查看network,请求被转换成GET方式发出。
@RequestMapping(value = "/{id}", method = RequestMethod.PUT) public String update(Model model, @PathVariable Integer id, @RequestParam Integer lib_id, @RequestParam String word, RiskKeyWord key) { writeDao.update("word.update", key); return "word"; }
如果是PUT方式提交啊,spring mvc并不会解析请求体的参数。但是这个问题可以通过配置HttpPutFormContentFilter解决。
<filter> <filter-name>httpPutFormFilter</filter-name> <filter-class>org.springframework.web.filter.HttpPutFormContentFilter</filter-class> </filter> <filter-mapping> <filter-name>httpPutFormFilter</filter-name> <servlet-name>appServlet</servlet-name> </filter-mapping> <servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-config.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
通过HttpPutFormContentFilter源代码发现,这个filter会解析请求体的参数,然后把这些参数封装到一个新的HttpServletRequest参数里,并把这个新的HttpServletRequest传入到下一个filter。
通过这种方法,@RequestParam注解可以正常使用了。