美文网首页
springboot 配置静态资源做简单的文件服务器

springboot 配置静态资源做简单的文件服务器

作者: LI木水 | 来源:发表于2018-10-16 16:17 被阅读0次

应用场景

把文件独立出来放到其他盘符,比如我的服务在 /server 文件放到 /data
通常情况下放到对应项目的 webapps 下的文件才能正常访问,现在我需要访问E盘中的内容,这时候我就需要 自定义静态资源映射

实现方法

实现类继承 WebMvcConfigurerAdapter 并重写方法 addResourceHandlers,代码如下

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configuration
public class FileServerConfig extends WebMvcConfigurerAdapter {
    @Value("${local.fileserver.dir}")
    private String localFileServerDir;

    @Value("${local.fileserver.path}")
    private String localFileServerPath;

    //访问图片方法
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {

        registry.addResourceHandler("/" + this.getLocalFileServerPath() + "/**").addResourceLocations("file:" + this.getLocalFileServerDir() + "/");

        // 本地文件夹要以"flie:" 开头,文件夹要以"/" 结束,example:
        //registry.addResourceHandler("/abc/**").addResourceLocations("file:D:/pdf/");
        super.addResourceHandlers(registry);
    }

    /**
     * 文件实际路径转为服务器url路径
     * @param absolutePath
     * @return
     */
    public String toServerPath(String absolutePath) {
        absolutePath = absolutePath.replaceAll("\\\\", "/");
        return "/" + absolutePath.replace(localFileServerDir, localFileServerPath);
    }

    public String getLocalFileServerDir() {
        return localFileServerDir;
    }

    public void setLocalFileServerDir(String localFileServerDir) {
        this.localFileServerDir = localFileServerDir;
    }

    public String getLocalFileServerPath() {
        return localFileServerPath;
    }

    public void setLocalFileServerPath(String localFileServerPath) {
        this.localFileServerPath = localFileServerPath;
    }
}

注意:本地文件夹要以"flie:" 开头,文件夹要以"/" 结束,example:
registry.addResourceHandler("/pdf/**").addResourceLocations("file:D:/pdf/");

配置文件对应配置:

server.port=8089
server.context-path=/
local.fileserver.dir=/data
local.fileserver.path=serverdata

意思是你的服务器路径serverdata 对应你本地的/data目录这时你的,假如要访问/data/test.jpg图片,对应的服务器路径为 http://localhost:serverdata/test.jpg

相关文章

网友评论

      本文标题:springboot 配置静态资源做简单的文件服务器

      本文链接:https://www.haomeiwen.com/subject/lophzftx.html