总结一下springboot静态资源映射

总结一下springboot静态资源映射。就是可以用项目访问路径来访问 服务上的文件。比如我的项目路径是http://xxx:8080/demo ,我访问我磁盘中的图片路径是http://xxx:8080/demo/static/demo.jpg

package com.xnpool.common.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.ResourceUtils;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import java.io.File;
import java.io.FileNotFoundException;


/**
 * @author heqiwen
 * @version 1.0
 * @since 2020/11/10
 */
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {

    @Value("${cloudwallet.systemfile.filepath}")
    private String systemPath;

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        File path = null;
        try {
            path = new File(ResourceUtils.getURL("classpath:").getPath());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        //静态文件目录
        String gitPath = path.getParentFile().getParentFile().getParent() + File.separator + "static" + File.separator + "uploads" + File.separator;
        String filepath=systemPath+File.separator;

        registry.addResourceHandler("/static/**")//这个addResourceHandler是访问路径
                .addResourceLocations("file:"+filepath)//下面的这些addResourceLocations是磁盘中文件的位置。
                .addResourceLocations("classpath:META-INF/resources/")
                .addResourceLocations("classpath:/resources/")
                .addResourceLocations("classpath:/public/")
                .addResourceLocations("classpath:/static/");
        //.addResourceLocations("file:" + agreement + File.separator)
    }
}

我这里systemPath是在配置文件中写的/opt/uploads目录。 目录中有一个demo.jpg的图片。

已在现成项目中运行没有问题。在此总结怕后面自己又忘了,其他人也可以看一下。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值