객체 초기화 썸네일형 리스트형 스프링 Bean 객체의 초기화 및 소멸시 호출 메서드 스프링의 컨테이너가 Bean 객체의 초기화와 소멸에 따라 지정된 메서드를 호출 하는데.. 아래의 두가지 인터페이스에서 이 메서드를 정의 하고 있다. org.springframework.beans.factory.InitializingBean org.springframework.beans.factory.DisposableBean 만약 Bean 객체의 초기화 및 소멸 과정에 실행하고 싶은 작업이 있다면, 아래와 같이 InitializingBean과 DisposableBean을 구현하고, afterProperiesSet 메서드와 destroy메서드를 구현하면 된다. public class Bean implements InitializingBean, DisposableBean { ... @Override publ.. 더보기 이전 1 다음