스프링 프레임워크 기본 강좌 (10) - 빈 후처리기(Bean Post Processor) * 빈 후처리기(Bean Post Processor)란? - 빈(Bean)의 설정을 후처리(postprocessing)함으로써 빈의 생명 주기와 빈 팩토리의 생명주기에 관여. - 빈의 초기화 되기 전, 초기화 된 후 2개의 기회를 제공. - 빈 프로퍼티의 유효성 검사 등에 사용. - 다른 초기화 메소드인 afterPropertiesSet()과 init-method가 호출되기 직전과 직후에 호출되어짐. public interface BeanPostProcessor { Object postProcessBeforeInitialization(Object bean, String name) throws BeansException; Object postProcessAfterInitialization(Object be.. 더보기 이전 1 ··· 196 197 198 199 200 201 202 ··· 385 다음