SpringBoot-(10)配置虚拟路径-指定外部路径文件夹存取文件

Posted 洋子哥哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot-(10)配置虚拟路径-指定外部路径文件夹存取文件相关的知识,希望对你有一定的参考价值。

参考:https://blog.csdn.net/feng2147685/article/details/95623135

package com.online.director;

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

/**
 * Created by zhang_guang_yang on 2019/11/1.
 */
@Configuration
public class OnlineDirectorWebAppConfigurer extends WebMvcConfigurerAdapter {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/server/**").addResourceLocations("file:/Users/zhang_guang_yang/Python/server/");
        super.addResourceHandlers(registry);
    }
}

  

以上是关于SpringBoot-(10)配置虚拟路径-指定外部路径文件夹存取文件的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot设置文件虚拟路径映射

SpringBoot配置虚拟化路径用于图片的展示

Tomcat配置虚拟路径访问容器外的硬盘资源

SpringBoot 常用配置 静态资源访问配置/内置tomcat虚拟文件映射路径

自定义jar配置文件问题?

jar包启动方式以及配置文件读取顺序