美文网首页
SpringMVC RESTFul PUT无法向后端传递对象

SpringMVC RESTFul PUT无法向后端传递对象

作者: Hiseico | 来源:发表于2018-08-22 11:48 被阅读0次

问题

在SSM RESTFul风格的开发中,前端使用Ajax PUT请求传递一个对象到SpringMVC Controller中,但Controller接收的对象中没有数据。

 * 如果直接发送ajax=PUT形式的请求
 * 封装的数据
 * Employee 
 * [empId=1014, empName=null, gender=null, email=null, dId=null]
 * 
 * 问题:
 * 请求体中有数据;
 * 但是在Controller中Employee对象封装不上;

原因

 * Tomcat:
 *      1、将请求体中的数据,封装一个map。
 *      2、request.getParameter("empName")就会从这个map中取值。
 *      3、SpringMVC封装POJO对象的时候。
 *              会把POJO中每个属性的值,request.getParamter("email");
 * AJAX发送PUT请求引发的血案:
 *      PUT请求,请求体中的数据,request.getParameter("empName")拿不到
 *      Tomcat一看是PUT不会封装请求体中的数据为map,只有POST形式的请求才封装请求体为map
 * org.apache.catalina.connector.Request--parseParameters() (3111);
 * 
 * protected String parseBodyMethods = "POST";
 * if( !getConnector().isParseBodyMethod(getMethod()) ) {
            success = true;
            return;
        }

解决方案

 * 我们要能支持直接发送PUT之类的请求还要封装请求体中的数据
 * 1、在web.xml中配置上HttpPutFormContentFilter;
 * 2、他的作用;将请求体中的数据解析包装成一个map。
 * 3、request被重新包装,request.getParameter()被重写,就会从自己封装的map中取数据

web.xml

    <!-- 使用Rest风格的URI,将页面普通的post请求转为指定的delete或者put请求 -->
    <filter>
        <filter-name>HiddenHttpMethodFilter</filter-name>
        <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>HiddenHttpMethodFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <filter>
        <filter-name>HttpPutFormContentFilter</filter-name>
        <filter-class>org.springframework.web.filter.HttpPutFormContentFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>HttpPutFormContentFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

相关文章

网友评论

      本文标题:SpringMVC RESTFul PUT无法向后端传递对象

      本文链接:https://www.haomeiwen.com/subject/qxieiftx.html