springboot配置静态资源路径
时间: 2023-05-02 21:05:06 浏览: 113
问题:b的Spring Boot配置静态资源路径。
回答:可以在application.properties或者application.yml中使用以下配置改变Spring Boot的静态资源路径:
- application.properties:
```
spring.resources.static-locations=classpath:/static/
```
- application.yml:
```
spring:
resources:
static-locations: classpath:/static/
```
相关问题
springboot 配置静态资源
可以通过在 application.properties 或 application.yml 文件中配置 spring.resources.static-locations 属性来指定静态资源的路径,例如:
application.properties:
spring.resources.static-locations=classpath:/static/
application.yml:
spring:
resources:
static-locations: classpath:/static/
这样就可以将静态资源放在 src/main/resources/static 目录下,并通过访问 /static/xxx.xxx 的方式来访问静态资源。
springboot中如何配置静态资源路径
在Spring Boot中,可以通过在application.properties文件中设置以下属性来配置静态资源路径:
spring.mvc.static-path-pattern=/resources/**
spring.resources.static-locations=classpath:/static/
其中,spring.mvc.static-path-pattern属性用于指定访问静态资源的URL路径匹配模式,而spring.resources.static-locations 属性用于指定静态资源所在的位置。
例如,以上的配置意味着静态资源的URL路径应该以 "/resources/" 开头,静态资源文件应该位于classpath:/static/目录下。
需要注意的是,在实际项目中,静态资源路径的配置可能会因为项目的具体需求而各有不同。
阅读全文