美文网首页
@value方式注入属性

@value方式注入属性

作者: 558f565a3cd7 | 来源:发表于2017-04-17 12:16 被阅读0次
    属性文件配置

    注入位置

    • 成员变量
    @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
        }
    }
    

    相关文章

      网友评论

          本文标题:@value方式注入属性

          本文链接:https://www.haomeiwen.com/subject/fkkzattx.html