【Spring】使用XML進行Bean裝配與依賴注入
阿新 • • 發佈:2019-02-11
使用XML進行bean裝配和依賴注入是Spring的一種方式,但是當程式較大導致bean過多或者依賴過多會導致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" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- 隱式註冊了多個對註釋進行解析處理的處理器 --> <context:annotation-config/> <!-- 例項化bean方式1:實用類構造器例項化(預設無引數) --> <bean id="personDao" class="niit.spring.dao.impl.PersonDaoImpl"></bean> <bean id="testDao" class="niit.spring.dao.impl.TestDaoImpl"></bean> <!-- 例項化bean方式2:使用靜態工廠方法(簡單工廠模式) --> <bean id="personService" class="niit.spring.factory.PersonServiceStaticFactory" factory-method="createPersonService"> <!-- 通過setter方法注入依賴:引用其他bean(外部bean)name屬性的值與Service層需要注入的屬性名一致;ref屬性的值與需要注入的id一致 --> <property name="personDao" ref="personDao"></property> <!-- <property name="testDao" ref="testDao"></property> --> </bean> <!-- 例項化bean方式3:使用例項工廠方法(工廠方法模式) --> <bean id="personUIFactory" class="niit.spring.factory.PersonUIFactory"/> <bean id="personUI" factory-bean="personUIFactory" factory-method="createPersonUI"> <property name="personService" ref="personService"></property> <!-- 依賴注入之基本資料型別 --> <property name="print" value="From XML: UI's save() is called"></property> <!-- 依賴注入之裝配集合 /List--> <property name="list"> <list> <value>list_1</value> <value>list_2</value> <value>list_3</value> </list> <!-- 設定空集合 <null/> --> </property> <!-- 依賴注入之裝配Set --> <property name="set"> <set> <value>set_1</value> <value>set_2</value> <value>set_3</value> </set> </property> <!-- 依賴注入之裝配Map 注意Key必須為String--> <property name="map"> <map> <entry key="I"> <value>1</value> </entry> <entry key="II"> <value>2</value> </entry> <entry key="III"> <value>3</value> </entry> </map> </property> <!-- 依賴注入之裝配Properties --> <property name="prop"> <props> <prop key="key">propValue</prop> </props> </property> <!-- 通過建構函式按順序傳入依賴 需要注意的是需要在對應工廠類方法與返回值物件中新增引數--> <constructor-arg index="0" value="parameterValue_1"></constructor-arg> <constructor-arg index="1" value="parameterValue_2"></constructor-arg> <constructor-arg index="2" ref="personService"></constructor-arg> </bean> </beans>