• AJAX发送PUT请求引发的血案


     如果直接发送ajax=put形式的请求
          是拿不到请求体中的数据的。
        
          Tomcat:
                  1、将请求体中的数据,封装一个map
                  2、request.getParameter("empName")就会从这个map中取值
                  3、SpringMVC封装POJO对象的时候
                          会把POJO中每个属性的值,request.getParameter("email");
          AJAX发送PUT请求引发的血案:
                  PUT请求:请求体中的数据,request.getParameter("empName")拿不到
                  Tomcat一看是PUT请求不会封装请求体中的数据为map,只有POST形式的请求才封装请求体为map
        
          tomcat源码中

    org.apache.catalina.connector.Request--parseParameters() (3000多行)
         
            protected String parseBodyMethods = "POST";
    if ( !getConnector().isParseBodyMethod(getMethod())){ success = true; return; }

     解决方法:

    1.ajax请求发送post方法,请求路径中+上 &_Method = PUT 或者

    2. 配置过滤器

       <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>
  • 相关阅读:
    (一)3、安装jexus
    走向全栈之坑—开始实践
    java Collection.stream操作
    redis常用命令练习
    Spring4
    java数据提交时问题
    常见协议默认端口
    重写equals方法
    redis
    xml
  • 原文地址:https://www.cnblogs.com/deepSleeping/p/10725177.html
Copyright © 2020-2023  润新知