Spring Boot 之 ResourceHandlerRegistry 通过url直接访问本地服务器上指定路径的资源

一、添加pom依赖


  org.springframework.boot
  spring-boot-starter-web
  2.1.1.RELEASE

二、配置WebMvcConfigurer,设置url访问静态资源映射

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.WebMvcConfigurer;

@Configuration
public class SongConfig implements WebMvcConfigurer {


    @Value("${songPic.path}")
    private String songPicPath;

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        //加载文件资源
        registry.addResourceHandler("/songPic/**").addResourceLocations("file:"+songPicPath);
    }
}

三、配置文件(application.properties)中配置访问的真实路径

四、在songPic文件夹中添加一个名为123.jpg的文件,通过http://ip:端口/项目基本路径/songPic/123.jpg 请求即可访问到该图片

你可能感兴趣的:(Spring,Boot)