配置文件
在类路径下新建配置文件message.prope
1 | haha = |
1. 读取指定的配置文件
@PropertySource(value = {"classpath:message.properties"})
指定配置文件的位置。
@ConfigurationProperties(prefix = "message")
读取配置文件,将本类中的所有属性和配置文件中相关的配置进行绑定
@Component
标识为一个 Spring 组件,因为只有是容器中的组件,容器才会为 @ConfigurationProperties
提供此注入功能
1 |
|
2. 演示
1 |
|