首先类都要有@Component
1.value
yml
bill-query:
profile: E:/
注解
@Value("${bill-query.profile}")
private static String profile;
注入失败:Spring的注解不支持静态的变量和方法
private static String profile;
@Value("${bill-query.profile}")
public void setProfile(String profile) {
BillQueryConfig.profile = profile;
}
2. ConfigurationProperties也一样不能用静态set方法
@ConfigurationProperties(prefix = "bill-query")