1. 程式人生 > 程式設計 >SPRING IOC注入方式過程解析

SPRING IOC注入方式過程解析

這篇文章主要介紹了SPRING IOC注入方式過程解析,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

Spring IOC注入的方法主要有兩種

1:設值注入

2:構造注入

簡單來說一個是呼叫set方法設值,一個是通過建構函式設值

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>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。