SpringMVC-实现PUT请求上传文件(转)

时间:2021-12-18 04:03:54

因为在图片上传的时候使用的是二进制的方式上传,所以使用隐藏域进行方法转换方式失效,转方法:

https://www.cnblogs.com/morethink/p/6378015.html

可是后来我又有遇到另外一个需求那就是修改的时候需要传送文件到put方法中,于是这种方法就不可行了,但是我在HiddenHttpMethodFilter源码中看到这样一句话

  * <p><b>NOTE: This filter needs to run after multipart processing in case of a multipart
* POST request, due to its inherent need for checking a POST body parameter.</b>
* So typically, put a Spring {@link org.springframework.web.multipart.support.MultipartFilter}
* <i>before</i> this HiddenHttpMethodFilter in your {@code web.xml} filter chain.

和MultipartFilter源码中这样的注释

  /**
* Set the bean name of the MultipartResolver to fetch from Spring's
* root application context. Default is "filterMultipartResolver".
*/
  1. 也就是说我们可以通过在web.xml中注册一个MultipartFilter,一定要在HiddenHttpMethodFilter之前

     <filter>
    <filter-name>MultipartFilter</filter-name>
    <filter-class>org.springframework.web.multipart.support.MultipartFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>MultipartFilter</filter-name>
    <servlet-name>dispatcher</servlet-name>
    </filter-mapping> <filter>
    <filter-name>HiddenHttpMethodFilter</filter-name>
    <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
    </filter>
  2. 然后再在Spring的 root application context中添加如下代码

    <bean id="filterMultipartResolver"
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <property name="maxUploadSize" value="209715200"/>
    <property name="defaultEncoding" value="UTF-8"/>
    <property name="resolveLazily" value="true"/>
    </bean>
  3. FormData对象是html5的一个对象,目前的一些主流的浏览器都已经兼容。FormData对象是html5的一个对象,目前的一些主流的浏览器都已经兼容。

     function test() {
    var form = new FormData(document.getElementById("tf"));
    form.append("_method", 'put');
    $.ajax({
    url: url,
    type: 'post',
    data: form,
    processData: false,
    contentType: false,
    success: function (data) {
    window.clearInterval(timer);
    console.log("over..");
    },
    error: function (e) {
    alert("错误!!");
    window.clearInterval(timer);
    }
    });
    get();//此处为上传文件的进度条
    }
    <form id="tf" method="post" name="formDada" enctype="multipart/form-data">
    <input type="file" name="file"/>
    <input type="text" name="id"/>
    <input type="text" name="name"/>
    <input type="button" value="提" onclick="test()"/>
    </form>

最后,就可以实现将文件上传提交给put方法。

我使用文章中的方法还是失败,修改web.xml中multipartfilter的mapping之后成功

 <filter>
<filter-name>multipartFilter</filter-name>
<filter-class>org.springframework.web.multipart.support.MultipartFilter</filter-class>
<init-param>
<param-name>multipartResolverBeanName</param-name>
<param-value>multipartResolver</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>multipartFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>