spring boot .yml配置文件 配置路径映射

spring:
  resources:
   static-locations: classpath:/META-INF/resources/,classpath:/resources/, classpath:/static/, classpath:/public/, file:E:/data

前面那几个都是项目默认的 file后面的就是你本地的映射路径,
想要读取里面的东西的时候从 data文件往后写,比如我的东西是在E:/data/test.txt,那我就写 “test.txt” 就可以data前面的不用写

你可能感兴趣的:(html)