springboot中如何配置静态资源路径
时间: 2023-05-21 07:07:22 浏览: 118
在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/目录下。
需要注意的是,在实际项目中,静态资源路径的配置可能会因为项目的具体需求而各有不同。
相关问题
springboot配置静态资源路径
问题: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在哪配置静态资源路径
在Spring Boot中,可以通过在application.properties或application.yml文件中设置spring.resources.static-locations属性来配置静态资源路径。例如,将静态资源文件夹放置在项目根目录下的static文件夹中,可以在application.properties文件中添加以下配置:
```
spring.resources.static-locations=classpath:/static/
```
其中,classpath:/表示在classpath路径下查找,static/表示查找名为static的文件夹。如果有多个静态资源文件夹,可以用逗号分隔,例如:
```
spring.resources.static-locations=classpath:/static/,classpath:/public/
```
这样就可以同时在classpath的static和public文件夹中查找静态资源。
阅读全文