本编文章,探讨springboot项目在两种部署方式下如何作为文件服务器,即能够上传、下载文件
方式一:jar包直接部署
1、定义WebMvcConfigurer类,配置web资源
@Configuration
@EnableWebMvc
public class ConfigurerAdapter implements WebMvcConfigurer {
@Autowired
private AppPathConfig appPathConfig;
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/").setCachePeriod(0);
//从config类中获取当前项目的静态路径
String webPath = "/".equals(appPathConfig.getHomePath()) ? "" : appConfig.getHomePath();
System.out.println("静态文件路径---"+webPath);
//指定文件访问路径,请求路径带 /file/文件名 统一重定向file://webPath/file/文件名
registry.addResourceHandler("/file/**").addResourceLocations("file:"+webPath+"/file/image");
@Component
public class AppPathConfig {
public String getHomePath() {
ApplicationHome home = new ApplicationHome(getClass());
File jarFile = home.getSource();
//项目部署的目录
if (jarFile != null) {
String path = jarFile.getParentFile().getPath();
return path;
}
return null;
}
}
2、上传文件
public String upload(MultipartFile file) {
String fileName = file.getOriginalFilename();
String relativePath = "";
try {
relativePath = "/file/image/"+ fileName;
String webPath = appPathConfig.getHomePath();
File targetFile = new File(webPath + relativePath);
if (!targetFile.exists()) {
targetFile.mkdirs();
}
file.transferTo(targetFile);
} catch (FileNotFoundException e) {
log.error("no such file", e);
throw new BadRequestException("上传失败");
} catch (IOException e) {
log.error("上传失败", e);
throw new BadRequestException("上传失败");
}
return relativePath;
}
3、访问文件,通过项目域名直接获取文件,此时你的项目就是一个简单的文件服务器了
二、docker方式下部署
docker部署与传统部署的区别就是docker是容器化部署,文件不能持久化,用挂载的方式部署即可解决问题
docker run -d -p 8808:8080 -v /file/image:/file/image 项目名:docker镜像tag
这里 -v就是挂载命令 -v 宿主机路径:容器路径,即把容器路径挂载到服务器路径上,这样文件会实现文件同步,这里有个细节:通过项目路径访问文件,宿主机路径和容器路径必须保持一致,否则不能访问