码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot-配置文件属性注入-2种方式

时间:2017-09-21 13:34:20      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:world   config   source   ati   boot   bsp   url   bean   value   

方式一:

@Component
@Data
public class PropertyBean {
    @Value("${datasource.url}")
    private String url;
    @Value("${datasource.username}")
    private String userName;
}

方式二:

@Component
@Configuration
@EnableAutoConfiguration
public class PropertyBeanUtil {

    @Bean
    @ConfigurationProperties(prefix = "datasource")
    public PropertyBean propertyBean() {
        return new PropertyBean();
    }

}

 

配置文件:

datasource.username = admin
datasource.url = /hello/world

 

SpringBoot-配置文件属性注入-2种方式

标签:world   config   source   ati   boot   bsp   url   bean   value   

原文地址:http://www.cnblogs.com/zhaojinxin/p/7567500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!