springboot访问图片本地路径并映射成url
springboot如何访问本地路径并获取图片等静态资源文件的url?代码写法如下:
增加一个配置类:
1
2
3
4
5
6
7
8
9
10
11
|
@Configuration
public class WebMvcConfigurer extends WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
//和页面有关的静态目录都放在项目的static目录下
registry.addResourceHandler( "/static/**" ).addResourceLocations( "classpath:/static/" );
//上传的图片在D盘下的OTA目录下,访问路径如:http://localhost:8081/OTA/d3cf0281-bb7f-40e0-ab77-406db95ccf2c.jpg
//其中OTA表示访问的前缀。"file:D:/OTA/"是文件真实的存储路径
registry.addResourceHandler( "/OTA/**" ).addResourceLocations( "file:D:/OTA/" );
}
}
|
运行该工程:
可以发现资源文件夹static也被放入了部署的target文件夹中;
另外,通过以下网址均可访问相关静态资源:
http://localhost:8080/static/%E6%8D%95%E8%8E%B7.PNG
http://localhost:8080/OTA/%E6%8D%95%E8%8E%B7.PNG
SpringBoot设置url访问本地图片
创建WebMvcConfig配置类
1
2
3
4
5
6
7
8
|
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
// /home/file/**为前端URL访问路径 后面 file:xxxx为本地磁盘映射
registry.addResourceHandler( "/images/**" ).addResourceLocations( "file:C://image/" );
}
}
|
加上这个配置类后访问 /images/**这个路径就会去本地C://image/ 找对应的文件
访问地址:http://localhost:8080/images/f.jpg
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/chao821/article/details/85565231