springboot访问静态资源的路径怎么写
时间: 2023-05-19 08:04:17 浏览: 136
在 Spring Boot 中,访问静态资源的路径可以通过在 application.properties 文件中配置 spring.resources.static-locations 属性来实现。例如,如果你想访问位于 src/main/resources/static 目录下的静态资源,可以在 application.properties 文件中添加以下配置:
spring.resources.static-locations=classpath:/static/
这样,你就可以通过访问 http://localhost:8080/yourfile.html 来访问静态资源了。
相关问题
springboot访问静态资源
Spring Boot默认将静态资源放在classpath下的static目录下,可以通过在application.properties文件中配置spring.resources.static-locations属性来指定静态资源路径,例如:
```
spring.resources.static-locations=classpath:/static/,file:/usr/local/static/
```
其中classpath:/static/表示将静态资源放在classpath下的static目录下,file:/usr/local/static/表示将静态资源放在磁盘上的/usr/local/static/目录下。
在HTML文件中引用静态资源时,可以使用相对路径或绝对路径,例如:
```
<link rel="stylesheet" href="css/style.css">
```
```
<link rel="stylesheet" href="/css/style.css">
```
其中,相对路径是相对于当前HTML文件的路径,绝对路径是相对于静态资源所在的根路径的路径。在Spring Boot中,静态资源的根路径默认为classpath:/static/。
springboot 访问静态资源
Spring Boot访问静态资源404的原因可能有以下几种:
1. 静态资源路径不正确:需要确保静态资源的路径正确,可以在application.properties或application.yml中配置静态资源路径。
2. 静态资源未放置在正确的位置:需要确保静态资源放置在正确的位置,一般是放置在src/main/resources/static目录下。
3. 静态资源未被正确映射:需要在Spring Boot的配置文件中添加静态资源映射,可以使用addResourceHandlers方法进行配置。
4. 静态资源被拦截器拦截:需要确保拦截器不会拦截静态资源,可以在拦截器中添加excludePathPatterns方法进行配置。
以上是一些可能导致Spring Boot访问静态资源404的原因,需要根据具体情况进行排查和解决。
阅读全文