Spring learn (a) Spring IOC container

EDITORIAL. This article is not comprehensive, nor full example. There are only some basic understanding of the students review or strong ability to learn.

Much of finishing and Mu class network https://www.imooc.com/video/3662      Author: moocer , if the foundation is 0 recommend the venue to learn.

Part belongs to original author, if infringement please contact me immediately, I will deal with in a timely manner.

========= ========= dividing line

1. Construction injection

<beans xmlns="...">
    <bean id="demo" class="com.pojo.Demo">
        <constructor-arg name="name" value="chen">
    </bean>
</beans>    

2. The set value of the injected Setter

<beans xmlns="...">
    <bean id="demo" class="com.pojo.Demo">
        <property name="notifyservice" value="chen"/>
    </bean>
</beans>    

 

Guess you like

Origin www.cnblogs.com/ic710/p/11026743.html