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

Spring基础(8) : properties配置文件

时间:2017-03-14 23:45:46      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:内容   getbean   ace   app   string   bean   context   sys   lap   

    <context:property-placeholder location="p.properties"/>

    <bean id="p" class="com.Person">
         <property name="name" value="${name}"/>
    </bean>

  

工程 resource下新建一个 p.properties文件,里面内容为:

name=hahadaxiao

  

使用:

public static void main(String[] args){
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("a.xml");
        Person p = context.getBean("p",Person.class);
        System.out.println(p.name);
    }

  打印:

hahadaxiao

 

 

若有多个properties文件,则用 *号通配符,或者用逗号分隔

<context:property-placeholder location="*.properties"/>
<context:property-placeholder location="p.properties,pbp.properties"/>

  

Spring基础(8) : properties配置文件

标签:内容   getbean   ace   app   string   bean   context   sys   lap   

原文地址:http://www.cnblogs.com/lh218/p/6551260.html

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