mirror of https://github.com/elunez/eladmin
30 lines
898 B
Java
30 lines
898 B
Java
package me.zhengjie.tools.config;
|
|
|
|
import org.springframework.boot.web.servlet.MultipartConfigFactory;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import javax.servlet.MultipartConfigElement;
|
|
import java.io.File;
|
|
|
|
/**
|
|
* @date 2018-12-28
|
|
* @author https://blog.csdn.net/llibin1024530411/article/details/79474953
|
|
*/
|
|
@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();
|
|
}
|
|
} |