@ConfigurationProperties、@Value、@PropertySource
@ConfigurationProperties(spring-boot依赖下)、@Value(spring-beans依赖下)、@PropertySource(spring-context依赖下)
@ConfigurationProperties的使用
get和set方法必须要写
测试
@Value的使用
不需要写get和set方法
@PropertySource的使用
@PropertySouce用于引用自定义的.properties属性文件
可以结合@ConfigurationProperties使用,同样需要写get和set方法
也可以结合@Value使用,同样不需要写get和set方法