欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 boot 配置虚拟路径访问本地资源