Spring IOC's injection method

Spring IOC injection method There are two main

1: set value of the injected

2: Construction of the injection

 

It is simply a method of call set set value, a value set by the constructor

Spring-ioc.xml

<?xml version= "1.0" encoding= "UTF-8"?>
<beans xmlns= "http://www.springframework.org/schema/beans"
xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation= "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"
default-init-method= "init" default-destroy-method= "destroy">
<!--  
<bean id="InjectionService" class="Main.InjectionServiceImpl">
<property name="injectionDAO" ref="InjectionDAO"></property>
 </bean>
 -->
 <bean id="InjectionService" class="Main.InjectionServiceImpl">
<constructor-arg name="injectionDAO" ref="InjectionDAO"></constructor-arg>
 </bean>
<bean id="InjectionDAO" class= "Main.InjectionDAOImpl"> </bean>

</beans>

Guess you like

Origin www.cnblogs.com/wjune-0405/p/12148750.html