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