spring.config.location
时间: 2023-09-22 19:11:08 浏览: 174
Springmvc-annotation_contextConfigLocation
`spring.config.location` 是 Spring Boot 应用程序的一个配置属性,用于指定应用程序的配置文件的位置。默认情况下,Spring Boot应用程序会在以下位置查找其配置文件:
1. 当前工作目录下的 `./config/` 子目录
2. 当前工作目录
3. classpath 的 `/config/` 包
使用 `spring.config.location` 属性,可以指定一个或多个以逗号分隔的配置文件位置,以覆盖默认的配置文件位置。例如:
```
java -jar myapp.jar --spring.config.location=file:/path/to/myconfig.properties
```
这将告诉 Spring Boot 在 `/path/to/myconfig.properties` 中查找应用程序的配置。
阅读全文