本文主要是介绍SpringBoot项目的The temporary upload location ***is not valid 问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
日志信息:
Could not parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location [/dev1/testuser/management/uptmpfile] is not valid] with root cause
原因是SystemConfig这个类配置的有点问题
@Component
public class SystemConfig {
/**
* 上传临时文件夹路径配置
* @since 2019年2月20日上午9:58:22
* @author
* @return
*/
@Bean
MultipartConfigElement multipartConfigElement() {
MultipartConfigFactory factory = new MultipartConfigFactory();
String relativelyPath = System.getProperty("user.dir");
String path = relativelyPath + "/";
factory.setLocation(path + "/uptmpFile");
return factory.createMultipartConfig();
}
}
这篇关于SpringBoot项目的The temporary upload location ***is not valid 问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!