아래와 같이 리스트에 파일 경로를 넣어서 관리하면 된다.
<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>
'Development > Web & Server' 카테고리의 다른 글
[Hibernate] Embedded 사용하기 (0) | 2014.03.24 |
---|---|
[Spring Framework] jsp에서 리소스를 로딩할때.... 경로 설정하는 방법 (0) | 2014.03.20 |
[Hibernate] Criteria로 List를 가져올때 중복되는 값이 있다면... (0) | 2014.03.15 |
[Spring Framework] Email 발송하기~! (0) | 2014.03.11 |
[Amazon] RDS character set utf-8 로 세팅하기 (0) | 2014.03.03 |