springboot在配置文件中配置虚拟路径spring.resources.static-locations
1.首先在配置文件配置本地文件的路径:
filePath=./filepath/preReportUploadAttach
2.然后将本地文件的路径加入到静态资源路径中即可:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/, file:${filePath}
3.访问配置路径下的文件:如访问img.png
http://localhost:8080/img.png