728x90
반응형
PropertyPlaceholderConfigurer 클래스는 빈으로 등록하면 외부의 프로퍼티에 저장된 정보를 스프링 설정 파일에서 사용할 수 있다.
<bean id="propertyConfiguerer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath: 프로퍼티 파일 경로</value>
</list>
</property>
</bean>
728x90
반응형
'스프링' 카테고리의 다른 글
[Spring] Pageable 인터페이스 사용해보기 (0) | 2023.01.08 |
---|---|
[Spring] JpaRepository 사용법 (0) | 2023.01.08 |
엔티티 클래스(Entity Class) (0) | 2023.01.08 |
[Spring JPA] ORM, Spring JPA 그리고 Hibernate (0) | 2023.01.08 |
RedirectAttributes (0) | 2021.05.06 |