1.首先上传文件的时候,form表单一定要带上
enctype=“multipart/form-data”,但是这个会使得后台接收到的参数为null
这个时候需要导入两个jar包:
commons-fileupload-1.2.1.jar
commons-io-2.2.jar
顺便在springMVC.xml中配置
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 上传尺寸为B ,这里是1M -->
<property name="maxUploadSize" value="1048576"/>
</bean>
2.后台接收的时候 public String deployFlowZip(Model model,String filename,@RequestParam(value=“file”) MultipartFile file)
以这种形式接收,不然界面还是会报错(注意:MultipartFile 多文件上传)
转载:https://blog.csdn.net/m0_38094649/article/details/79002702