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

在Java代码中获取spring配置文件中的配置项

时间:2017-02-03 11:00:41      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:frame   配置   nbsp   blog   one   logs   div   bean   autowired   

1. application.properties配置文件增加配置项

myconfig.item.url=http://127.0.0.1:8080/proj/test

 

2. 写一个常量类

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component("constants")
public class Constants {

    @Value("${myconfig.item.url}")
    private String myconfigItemUrl;

    public String getMyconfigItemUrl() {
        return myconfigItemUrl;
    }

}

 

3. 其他代码中使用

    @Autowired
    private Constants constants;

    public void test(){
        String url = constants.getMyconfigItemUrl();
    }    

 

在Java代码中获取spring配置文件中的配置项

标签:frame   配置   nbsp   blog   one   logs   div   bean   autowired   

原文地址:http://www.cnblogs.com/zj0208/p/6362139.html

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