摘要:
代码结构: package com.java.spring; /** * 自定义InitializingBean * 作用:做初始化操作 */ public interface IInitializingBean { void afterPropertiesSet() throws Exceptio 阅读全文
摘要:
代码结构: 作用:将bean的名字传给实现此接口类 package com.java.spring; /** * 自定义BeanNameAware接口 * 作用:将bean的名字传给实现类 */ public interface IBeanNameAware { void setBeanName(S 阅读全文
摘要:
代码结构: 接上篇。 package com.java.spring; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.Retent 阅读全文