摘要:
用ref属性指定依赖 1.用local属性指定如:<property name="date"> <ref local="date"/> <!--local的属性值必须与被参考引用的Bean的id属性一致 --> </property> <bean id="date" class="java.util.Date"/> 2.用Bean属性指定如 : <property name="date"> <ref bean=&quo 阅读全文
摘要:
Bean的生命周期(Bean的生命周期包括定义、初始化、使用和销毁) 1.Bean的定义 Spring中,通常是通过配置文件的方式来定义Bean的 2.Bean的初始化 Bean的初始化可以通过在配置文档中指定属性来完成,也可以实现特定接口来完成。 1)在配置文件中通过指定init-method属性来完成如:<bean id="BeanLife" class="cn.Bean.Life.BeanLife" init-method="init"> <!-- 定义init方法为初始化方法--> 2)实现org.sp 阅读全文