spring boot 配置虚拟路径访问本地资源
程序员文章站
2022-07-10 18:12:53
...
application.yml的配置
server:
port: 1199 #端口号
servlet:
context-path: /fili #访问路径
spring:
mvc:
view:
prefix: /WEB-INF/jsp/
suffix: .jsp
#虚拟路径 访问
static-path-pattern: /imge/**
#图片存放的真实路径
resources:
static-locations: file:D://img/
配置完成后就可以按虚拟路径访问资源了
上一篇: Spring Boot2的静态资源路径
推荐阅读