解决Spring Boot应用上传文件时报错“spring.servlet.multipart.location”的方法
解决办法(1)通过Spring Boot的配置参数“spring.servlet.multipart.location”明确指定上传文件的临时目录,确保该路径已经存在,而且该目录不会被操作系统清除。spring.servlet.multipart.location=/data/tmp将上传文件的临时目录指定到路径“/data/tmp”下。实际上,在Spring Boot中关于上传文件的所有配置参数
·
解决办法
(1)通过Spring Boot的配置参数“spring.servlet.multipart.location”明确指定上传文件的临时目录,确保该路径已经存在,而且该目录不会被操作系统清除。
spring.servlet.multipart.location=/data/tmp
将上传文件的临时目录指定到路径“/data/tmp”下。
实际上,在Spring Boot中关于上传文件的所有配置参数如下所示:
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package javax.servlet;
import javax.servlet.annotation.MultipartConfig;
public class MultipartConfigElement {
private String location;
private long maxFileSize;
private long maxRequestSize;
private int fileSizeThreshold;
public MultipartConfigElement(String location) {
if (location == null) {
this.location = "";
} else {
this.location = location;
}
this.maxFileSize = -1L;
this.maxRequestSize = -1L;
this.fileSizeThreshold = 0;
}
public MultipartConfigElement(String location, long maxFileSize, long maxRequestSize, int fileSizeThreshold) {
if (location == null) {
this.location = "";
} else {
this.location = location;
}
this.maxFileSize = maxFileSize;
this.maxRequestSize = maxRequestSize;
this.fileSizeThreshold = fileSizeThreshold;
}
public MultipartConfigElement(MultipartConfig annotation) {
this.location = annotation.location();
this.fileSizeThreshold = annotation.fileSizeThreshold();
this.maxFileSize = annotation.maxFileSize();
this.maxRequestSize = annotation.maxRequestSize();
}
public String getLocation() {
return this.location;
}
public long getMaxFileSize() {
return this.maxFileSize;
}
public long getMaxRequestSize() {
return this.maxRequestSize;
}
public int getFileSizeThreshold() {
return this.fileSizeThreshold;
}
}
2)在Spring容器中明确注册MultipartConfigElement对象,通过MultipartConfigFactory指定一个路径。
在上述源码追踪中就发现,Tomcat会使用MultipartConfigElement对象的location属性作为上传文件的临时目录。
/**
* 配置上传文件临时目录
*
* @return
*/
@Bean
public MultipartConfigElement multipartConfigElement() {
MultipartConfigFactory factory = new MultipartConfigFactory();
String path = System.getProperty("user.dir");
File tmpFile = new File(path); // 如果临时目录不存在则创建
if (!tmpFile.exists()) {
tmpFile.mkdirs();
}
// 明确指定上传文件的临时目录
factory.setLocation(path);
return factory.createMultipartConfig();
}
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)