SpringBoot读取properties有哪些技巧

使用@Value注解注入属性值:可以在SpringBoot的组件中使用@Value注解注入properties文件中的属性值,例如:

@Value("${property.key}")
private String propertyValue;

使用@ConfigurationProperties注解绑定属性值:通过@ConfigurationProperties注解将properties文件中的属性值绑定到一个POJO类中,例如:

@ConfigurationProperties(prefix = "property")
public class MyProperties {
    private String key;
    
    // getters and setters
}

使用Environment对象:可以通过@Autowired注解注入Environment对象,然后通过getProperty方法读取properties文件中的属性值,例如:

@Autowired
private Environment env;
public void getProperty() {
    String propertyValue = env.getProperty("property.key");
}

使用@PropertySource注解加载properties文件:可以使用@PropertySource注解加载指定的properties文件,然后通过Environment对象或@Value注解读取属性值,例如:

@PropertySource("classpath:config.properties")
@Configuration
public class AppConfig {
    @Autowired
    private Environment env;
    @Value("${property.key}")
    private String propertyValue;
}

这些技巧可以帮助SpringBoot应用程序方便地读取properties文件中的属性值。