@EnableConfigurationProperties注册配置Bean
Spring和Spring Boot开发中,常使用@ConfigurationProperties注解某个类,使其实例接受一组具有相同前缀的配置项。
可以使用@Component或Java Config将使用@ConfigurationProperties的类声明为Bean。
Spring Boot提供了@EnableConfigurationProperties也可以实现类似的注册功能。
然而@EnableConfigurationProperties注册配置Bean时,设置的Bean名称却比较特别,有以下两种情形。
1. @ConfigurationProperties#prefix 为空
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
@Data
@ConfigurationProperties // @ConfigurationProperties#prefix没有设置值的场景
public class AnotherBean {
private String anotherAttr1;
private String anotherAttr2;
private String anotherAttr3;
}
此时application.properties的配置项不需要某个特定的前缀:
another-attr1 = av1
another-attr2 = av2
another-attr3 = av3
如果使用@EnableConfigurationProperties({AnotherBean.class})将其注册为Bean时,其名字是:被@ConfigurationProperties注解的类的全类名:
import org.assertj.core.api.Assertions;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context