springmvc6.0.2文件上传没有org.springframework.web.multipart.commons“包

1.文件上传在 SpringMVC 的配置文件中加入 multipart 类型数据的解析器:

<bean id="multipartResolver" 
      class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    
    <!-- 由于上传文件的表单请求体编码方式是 multipart/form-data 格式,所以要在解析器中指定字符集 -->
    <property name="defaultEncoding" value="UTF-8"/>
    
</bean>

问题:但是没有commons包

解决方案:


(1)把springmvc.xml文件里面的org.springframework.web.multipart.commons.CommonsMultipartyResolver

替换成:
org.springframework.web.multipart.support.StandardServletMultipartResolver

<!--配置文件上传解析器-->
<bean id="multipartResolver" class="org.springframework.web.multipart.support.StandardServletMultipartResolver">
</bean>


(2)接着在你的web.xml里面,在你配置DispatcherServlet的<servlet>标签里面,加上
<multipart-config>
<max-file-size>10485760</max-file-size>
<max-request-size>10485760</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>

<!-- 配置springmvc的中央控制器 -->
<servlet>
   //********其他代码

    <multipart-config>
        <max-file-size>10485760</max-file-size>
        <max-request-size>10485760</max-request-size>
        <file-size-threshold>0</file-size-threshold>
    </multipart-config>


</servlet>


(3)最后是controller类里面的方法,在你的方法形参列表中的MultipartFile xxx前面加上@RequestParam注解,后来的操作就是获取路径了。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值