SpringBoot配置虚拟路径 - GXUZF.COM - 林澈思的茶

SpringBoot配置虚拟路径

分类:折腾 ; 热度:2158 ; 最后更新于2020 年 02 月 14 日

对虚拟路径不太了解的可以查看我以前的文章
一文读懂tomcat配置虚拟路径https://www.gxuzf.com/2019/action/1815.html
这里主要介绍SpringBoot的配置方法。
我这里使用的方法主要是重写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 DirConfig extends WebMvcConfigurerAdapter{

    @Value("${localUploadAPK}")
    private String localUploadAPK;

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry){
        registry.addResourceHandler( "/apk/**").addResourceLocations("file:"+localUploadAPK);
    }
}

application.properties中添加配置

localUploadAPK=/data/apk

完成!
参考文章
https://blog.csdn.net/qq_37859539/article/details/82912851

本文转自好好网,原文链接https://www.haohaowang.top/articles/173


评论卡