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

SpringBoot自定义静态资源资源路径

程序员文章站 2022-03-23 23:16:51
...
#自定义文件路径
web:
  upload-path: D:/images
#添加到Spring静态资源配置
spring:
  resources:
    static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}/

相关标签: SpringBoot学习