sprinboot url显示本地图片资源

 

方式1:

配置文件:

spring.mvc.static-path-pattern=/image/**
spring.resources.static-locations=file:C:/Users/zwl/Desktop/wxhook/imgs/

设置本地图片资源路径和请求路径前缀

 

请求地址:

127.0.0.1:8080/image/xxxx.png

 

 

 

方式2:

创建一个配置类

@Configuration
public class MyWebAppConfigurer implements WebMvcConfigurer {
    /**
     * 资源映射路径
     * addResourceHandler:访问映射路径
     * addResourceLocations:资源绝对路径
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/image/**").addResourceLocations("file:/Users/qufan/Downloads/pic/");
    }

}

 

posted @ 2022-06-01 20:11  Hello霖  阅读(84)  评论(0编辑  收藏  举报