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

Spring容器管理各种文件

时间:2014-08-01 19:03:42      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   使用   strong   io   文件   

1. 导入文件

  <import resource="applicationContext-dataSource.xml" />

2. 引用资源配置文件

<context:property-placeholder location="classpath:jdbc.properties,classpath:xxx.properties"/>
或者
<context:property-placeholder location="xxx.properties" ignore-unresolvable="true"/>
<context:property-placeholder location="xxx.properties" ignore-unresolvable="true"/>

  多次引用没有ignore-unresolvable="true"一定会出"Could not resolve placeholder"异常。

  Spring 2.5中,<context:property-placeholder>没有ignore-unresolvable属性,所以就不能使用上面的那种方法去配置,

  可以改如下的格式:

<bean id="propertyConfigurer"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:/jdbc.properties</value>
</list>
</property>
</bean>

  使用引用的文件内容:

<bean name="userInfo" class="test.UserInfo">  
  <property name="username" value="${db.username}"/>  
  <property name="password" value="${db.password}"/>  
</bean> 

3. 在项目java代码中引用资源文件

  例如引用xxx.properties中的内容

  首先在spring容器中配置:

<util:properties id="settings" location="/WEB-INF/xxx.properties"></util:properties>

  java代码中使用方法:

@Value("#{settings}")   
private Properties file;
或者
@Value("#{settings[‘test.abc‘]}")   
private String url;

 

Spring容器管理各种文件,布布扣,bubuko.com

Spring容器管理各种文件

标签:style   blog   color   java   使用   strong   io   文件   

原文地址:http://www.cnblogs.com/cxyj/p/3885319.html

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