Spring框架的一个核心就是依赖注入,依赖注入把由类主动索取的方式改为了“被动”的接受,从而提高了应用程序的灵活行。
在做gxpt系统的时候,由于业务的原因,封装了级联下拉控件,用到级联下拉控件的地方,对应的action类继承一个父类就行,以提高封装性。父类需要用spring注入service对象,那怎么实现父类的注入呢?
spring配置文件代码:
<!--父类bean--> <bean id="droplistAction" class="****" scope="prototype"> <!--向父类属性中注入对象--> <property name="droplistService" ref="droplist-droplistbean"/> </bean> <!--实现了droplistAction的子类,定义parent属性,属性值为父类ID--> <bean id="ExamDetailsAction" class="***" scope="prototype" parent="droplistAction"> <!--注入子类需要的内容,父类需要的对象在定义父类bean的时候注入就好--> <property name="examDetailsService" ref="examdetails-examdetailsbean"/> </bean>
其实核心就是在定义子类bean的时候定义parent属性,并且在父类bean中注意依赖的对象!