spring.resources.static-locations=classpath:/static/,file:/path/to/your/directory/在yml文件里怎么配置
时间: 2023-06-28 22:04:10 浏览: 219
Spring Boot使用yml格式进行配置的方法
在 yml 文件中,可以按照以下格式进行配置:
```
spring:
resources:
static-locations:
- classpath:/static/
- file:/path/to/your/directory/
```
其中,`-` 表示一个静态资源路径的开始。`classpath:/static/` 表示在 classpath 中查找静态资源,`file:/path/to/your/directory/` 表示在指定的目录中查找静态资源。可以配置多个静态资源路径,每个路径单独一行,使用 `-` 开始。
阅读全文