使用Apache Commons FileUpload组件上传文件时总是返回null,调试发现ServletFileUpload对象为空,在Spring Boot中有默认的文件上传组件,在使用ServletFileUpload时需要关闭Spring Boot的默认配置 ,
禁用MultipartResolver
Spring提供的默认值
1.0在配置文件中添加
spring.http.multipart.enabled=false
2.0在配置文件中添加
spring.servlet.multipart.enabled=false
原文地址:https://www.cnblogs.com/tinya/p/9626710.html
时间: 2024-10-22 01:30:48