『 ApplicationContext.xml 』

​<소스코드>

 

<!– Autowired Scan 유효화 정의 -->
    <context:annotation-config />
    <!-- 설정값 -->
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:database.properties</value>
<value>classpath:app.properties</value>             </list>
        </property>
    </bean>


 

 

 

 

+ Recent posts