<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
 
 <beans> 
    
    <bean id="propertyBean"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>org.wamblee.photos.properties</value>
                <value>hibernate.properties</value>
            </list>
        </property>
    </bean> 
 </beans>