摘要:
自定义注解类 @Retention(RetentionPolicy.RUNTIME),编译是保留运行时注解 1、定义注解类 package anno; import java.lang.annotation.ElementType; import java.lang.annotation.Reten 阅读全文
摘要:
spring生命周期回调 1、实现InitializingBean接口重写void afterPropertiesSet() throws Exception;方法 使用场景:再bean构造方法不方便处理场景下可以使用以上方式进行处理。 2、自定义init方法(xml) <bean id="exam 阅读全文