반응형
앞서 외부 프로퍼티 파일을 읽어 bean으로 등록해보았습니다.
외부 프로퍼티 파일을 여러개 읽어올 때 똑같은 방식으로 등록한다면 하나의 파일만 읽어들이는 문제가 발생한다.
<context:property-placeholder location="file:///C:\...파일경로\propertiesFileName1.properties" />
<context:property-placeholder location="file:///C:\...파일경로\propertiesFileName2.properties" />
이를 해결하는 방법은..
<context:property-placeholder order="1" ignore-unresolvable="true" location="file:///C:\...파일경로\propertiesFileName1.properties" />
<context:property-placeholder order="2" ignore-unresolvable="true" location="file:///C:\...파일경로\propertiesFileName2.properties" />
[ order="2" ignore-unresolvable="true" ]를 추가하여 문제를 해결할 수 있다.
반응형