溫馨提示×

springboot怎么讀取指定配置文件

小億
213
2023-12-01 15:27:27
欄目: 編程語言

Spring Boot 默認會讀取 application.properties 或 application.yml 配置文件。如果你想讀取其他指定的配置文件,可以通過在 application.properties 或 application.yml 文件中配置 spring.config.name 或 spring.config.location 屬性來指定。

  1. 在 application.properties 或 application.yml 文件中配置 spring.config.name 屬性,值為你想要讀取的配置文件的名稱(不包含擴展名)。例如,如果你想讀取 myconfig.properties 文件,可以在 application.properties 文件中添加以下配置:
spring.config.name=myconfig
  1. 如果你的配置文件不在默認的 classpath 目錄下,你還需要配置 spring.config.location 屬性,值為你的配置文件的絕對路徑或相對于 classpath 的路徑。例如,如果你的配置文件在 /opt/config/myconfig.properties,可以在 application.properties 文件中添加以下配置:
spring.config.name=myconfig
spring.config.location=file:/opt/config/

或者,如果你的配置文件在 classpath:config/ 目錄下,可以在 application.properties 文件中添加以下配置:

spring.config.name=myconfig
spring.config.location=classpath:config/

注意:如果你同時配置了 spring.config.name 和 spring.config.location 屬性,Spring Boot 會先查找 spring.config.location 指定的路徑下的文件,如果找不到再去查找 classpath 下的文件。

  1. 使用 @PropertySource 注解讀取指定配置文件。在你的配置類上添加 @PropertySource 注解,并指定要讀取的配置文件的路徑。例如,如果你想讀取 myconfig.properties 文件,可以在配置類上添加以下注解:
@Configuration
@PropertySource("classpath:myconfig.properties")
public class MyConfig {
    // ...
}

以上是讀取指定配置文件的幾種方式,你可以根據(jù)你的需求選擇合適的方式。

0