본문 바로가기

Development/Web & Server

[Spring Framework] property 파일 여러개를 로딩하기

아래와 같이 리스트에 파일 경로를 넣어서 관리하면 된다.


 <bean id="configurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<property name = "locations">

<list>

<value>file:src/main/webapp/WEB-INF/property/spring.properties</value>

       <value>file:src/main/webapp/WEB-INF/property/db.properties</value>

</list>

        </property>

    </bean>