init-method: 1개의 글
[Spring] 스프링 빈(Bean) 초기화, 소멸 시 특정 작업을 하는 방법
[Spring] 스프링 빈(Bean)이 초기화, 소멸 시 특정 작업을 하는 방법 방법 1: InitializingBean, DisposableBean 인터페이스 구현 방법 2: 스프링 XML 설정 사용 1. 인터페이스 구현 Spring에서 제공하는 InitializingBean, DisposableBean 인터페이스를 구현한다. public class BookDao implements InitializingBean, DisposableBean { @Override public void afterPropertiesSet() throws Exception { // 빈 초기화 시 코드 구현 } @Override public void destroy() throws Exception { // 빈 소멸 시 코드 구..
Spring Framework/Spring Core
2021. 4. 22. 01:09