属性文件配置
注入位置
- 成员变量
@Value("${tag}")
private String tag;
- 构造函数默认参数
@Component
class Message {
final String text
// Use @Autowired to get @Value to work.
@Autowired
Message(
// Refer to configuration property
// app.message.text to set value for
// constructor argument text.
@Value('${app.message.text}') final String text) {
this.text = text
}
}
网友评论