使用autowire属性可以实现自动注入,可以取值:byName和byType。
简单示例代码:
简单示例代码:
<bean id="registerAction" class="com.lantsky.action.RegisterAction" scope="prototype">
<property name="userManageService">
<ref bean="userManageService"/>
</property>
</bean>
<property name="userManageService">
<ref bean="userManageService"/>
</property>
</bean>
可以写成:
<bean id="registerAction" class="com.lantsky.action.RegisterAction" scope="prototype" autowire="byName"/>
浙公网安备 33010602011771号