SpringBoot 读取配置文件

Spring Boot 中读取配置文件有以下 5 种方法:

  1. 使用 @Value 读取配置文件。
  2. 使用 @ConfigurationProperties 读取配置文件。
  3. 使用 Environment 读取配置文件。
  • @Autowired
    private Environment environment;
  • 实现EnvironmentAware接口
  1. 使用 @PropertySource 读取配置文件。
  2. 使用原生方式读取配置文件。

你可能感兴趣的:(spring,boot,java)