-Dspring.config.location
时间: 2023-09-22 13:08:20 浏览: 256
dubbo-admin-springboot.rar
`-Dspring.config.location` 是 Spring Boot 应用程序启动时使用的一个 JVM 参数,用于指定外部配置文件的路径。该参数可以在命令行上设置,也可以在 IDE 中配置。
通过命令行设置 `-Dspring.config.location` 参数:
```shell
java -jar yourJarFile.jar -Dspring.config.location=file:/path/to/config.properties
```
使用 IDE 设置 `-Dspring.config.location` 参数:
在 IntelliJ IDEA 中,可以在 Run/Debug Configuration 中设置 VM options,例如:
```
-Dspring.config.location=file:/path/to/config.properties
```
在 Eclipse 中,可以在 Run Configurations 中设置 VM arguments,例如:
```
-Dspring.config.location=file:/path/to/config.properties
```
使用 `-Dspring.config.location` 参数时,Spring Boot 应用程序会优先加载指定的外部配置文件,如果找不到指定的文件,则会加载默认的配置文件。
注意,在使用 `-Dspring.config.location` 参数时,路径必须使用 file: 前缀来指定。
阅读全文