关于springboot上传文件报错:The temporary
作者:
路过的人儿 | 来源:发表于
2019-08-09 12:04 被阅读0次@Configuration
public class MultipartConfig{
/**
*文件临时上传路径
*/
@Bean
MultipartConfigElement multipartConfigElement() {
MultipartConfigFactory factory = new MultipartConfigFactory();
String location = System.getProperty("user.dir") +"/data/tmp";
File tmpFile =new File (location);
if(!tmpFile.exists()){
tmpFile.mkdirs();
}
Factory.setLocation(location);
return factory.createMultipartConfig();
}
}
本文标题:关于springboot上传文件报错:The temporary
本文链接:https://www.haomeiwen.com/subject/dswcjctx.html
网友评论