스프링 설정 파일(applicationContext.xml)에 다음 내용을 추가하면 돼요.
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="/WEB-INF/config/jdbc.properties" /> </bean>
스프링(Spring)에서 여러 properties 파일을 읽어오는 방법
스프링 설정 파일(applicationContext.xml)에 다음 내용을 추가하면 돼요.
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>/WEB-INF/config/jdbc.properties</value> <value>/WEB-INF/config/settings.properties</value> </list> </property> </bean>