|
|
@@ -47,4 +47,15 @@ public class SsoApplication {
|
|
|
});
|
|
|
application.run(args);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件上传临时路径
|
|
|
+ * 在Spring Boot下配置location,可以在main()方法所在文件中添加如下代码:
|
|
|
+ */
|
|
|
+ @Bean
|
|
|
+ MultipartConfigElement multipartConfigElement() {
|
|
|
+ MultipartConfigFactory factory = new MultipartConfigFactory();
|
|
|
+ factory.setLocation("data/tmp");
|
|
|
+ return factory.createMultipartConfig();
|
|
|
+ }
|
|
|
}
|