本文主要是介绍springboot配置静态资源位置static-locations、静态资源路径前缀static-path-pattern,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
spring:web:#springboot_v2.4以后配置方式。springboot_v2.3以前不需要“web”resources:#静态资源位置。默认为 "classpath:/META-INF/resources/","classpath:/resources/", "classpath:/static/", "classpath:/public/"static-locations:- file:./dist/ # 相对路径。命令行所在的目录#- file:D:/workspace/lishuoboy-test/dist/mvc:#静态资源访问路径前缀。默认为根目录/**,如http://localhost:8080/stat/贾静雯.png。如需配置多个,实现 WebMvcConfigurer.addResourceHandlers()#static-path-pattern: /**static-path-pattern: /stat/**
这篇关于springboot配置静态资源位置static-locations、静态资源路径前缀static-path-pattern的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!