728x90
반응형
PropertyPlaceholderConfigurer 사용법
writing..root-contex.xml
1. properties가 1개일 경우
<beans:bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<beans:property name="locations" value="classpath:jdbc.properties"/>
<beans:property name="fileEncoding" value="UTF-8"/>
</beans:bean>
2. properties가 여러개일 경우
<beans:bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<beans:property name="locations">
<beans:list>
<beans:value>classpath:jdbc.properties</beans:value>
</beans:list>
</beans:property>
<beans:property name="fileEncoding" value="UTF-8"/>
</beans:bean>
728x90
반응형
'Web Programming > java-jsp' 카테고리의 다른 글
SimpleDateFormat 클래스 (0) | 2013.09.10 |
---|---|
<c:choose> <c:when> <c:otherwise> 태그 (0) | 2013.09.10 |
팩토리 패턴 (0) | 2013.09.08 |
싱글톤 패턴 (0) | 2013.09.08 |
객체(Object)와 인스턴스(Instance) (0) | 2013.09.08 |