SpringBoot释放静态资源
1、设置资源映射路径,spring默认设置为/**
spring.mvc.static-path-pattern=/content/**
设置这个值以后我们如果想要访问静态资源时,必须要在访问路径的前面加上我们设置的映射资源路径。
2、设置资源映射地址
spring.web.resources.static-locations=classpath:/templates/
springboot默认资源地址配置
classpath:[/META-INF/resources/, /resources/, /static/, /public/]. [classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/public/]
需要注意:
spring.web.resources.static-locations是后续配置,旧版Springboot的配置项为:spring-resources-static-locations;在2.2.5版本之后,旧版本配置已经失效。