简单介绍spring的autowire属性

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

可以写成:
<bean id="registerAction" class="com.lantsky.action.RegisterAction" scope="prototype" autowire="byName"/>

RegisterAction.java中的userManageService可以容器启动时搜寻到,然后自动注入。

你可能感兴趣的:(java,spring)