인터페이스 InitializingBean, DisposableBean
Last updated
Last updated
스프링의 InitializingBean, DisposableBean 인터페이스를 상속받는다! InitializingBean : afterPropertiesSet() 메서드로 초기화를 지원 DisposableBean : destroy() 메서드로 소멸을 지원
초기화, 소멸 인터페이스 단점
이 인터페이스는 스프링 전용 인터페이스이기 때문에 해당 코드가 스프링 전용 인터페이스에 의존한다. 초기화, 소멸 메서드의 이름을 변경할 수 없다. =>내가 코드를 고칠 수 없는 외부 라이브러리에 적용할 수 없다.