springboot configuration static resource location static-locations, static resource path prefix 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/**

insert image description here

Guess you like

Origin blog.csdn.net/lishuoboy/article/details/131504053
Recommended