@PostConstruct
public void init(){...}
@PreDestroy
public void destroy(){...}
<!-- 公用注解 bean 后处理器,处理 @PostConstruct 和 @PreDestroy 注解 --> <bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor"/>
@PostConstruct
public void init(){...}
@PreDestroy
public void destroy(){...}
<!-- 公用注解 bean 后处理器,处理 @PostConstruct 和 @PreDestroy 注解 --> <bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor"/>