如何让springboot项目充当文件服务器

本编文章,探讨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  宿主机路径:容器路径,即把容器路径挂载到服务器路径上,这样文件会实现文件同步,这里有个细节:通过项目路径访问文件,宿主机路径和容器路径必须保持一致,否则不能访问

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值