Spring boot配置静态资源yml
时间: 2024-03-15 22:19:55 浏览: 90
springboot配置文件yml1
文件怎么写?
你可以在 application.yml 文件中添加以下配置来配置静态资源:
```yaml
spring:
resources:
static-locations: classpath:/static/
```
其中,`classpath:/static/` 指明了静态资源所在的路径。你可以将这个路径改为其他的路径来配置你的静态资源。
阅读全文