spring之setter注入

Posted more harder, the more fortunat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring之setter注入相关的知识,希望对你有一定的参考价值。

setter注入分为2种

第一:普通属性注入

  

<bean id="userAction" class="com.xx.action.UserAction">
<!--第一种-->
<property name="age" value="13"></property>
<!--第二种-->
<property name="name"> <value>孙权</value> </property> </bean>

第二:对象注入

<bean id="userAction" class="com.xx.action.UserAction">
<property name="userService" ref="userService"></property>
</bean>

<bean id="userService" class="com.xx.service.UserServiceImpl">
<property name="eat" value="吃水果"></property>
</bean>

 




以上是关于spring之setter注入的主要内容,如果未能解决你的问题,请参考以下文章

框架学习 Spring之依赖注入DI

Spring设置注入和构造注入的区别

Spring依赖注入的方式

java的Spring学习1--spring引用及属性(setter,getter)注入

Spring依赖注入的Setter注入(通过get和set方法注入)

Spring5依赖注入常用的三种方法:构造注入Setter注入自动装配