(<!-- 获取properties数据源文件 方式一 -->
	<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
        <property name="locations">  
            <list>  
                <value>classpath:/ssh-config/spring_2.5.5/c3p0.properties</value>  
            </list>  
        </property>  
    </bean> 
	
	
	<!-- 获取properties数据源文件 方式二 -->
	<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
		<property name="location" > 
			<value>classpath:/ssh-config/spring_2.5.5/c3p0.properties</value>
		</property>
    </bean> 
	
	
	<!-- 获取properties数据源文件 方式三 -->
	<context:property-placeholder location="classpath:/ssh-config/spring_2.5.5/c3p0.properties"/>


  1. 可以配置多个文件,2,3配置一个。

2.  加载配置文件之后,在spring的xml配置文件里可以使用${}来获取 配置文件里面的值