Spring@Autowired註解與自動裝配
1 配置檔案的方法
我們編寫spring 框架的程式碼時候。一直遵循是這樣一個規則:所有在spring中注入的bean 都建議定義成私有的域變數。並且要配套寫上 get 和 set方法。
Boss 擁有 Office 和 Car 型別的兩個屬性:
System.out.println必須實現toString方法 我們在 Spring 容器中將 Office 和 Car 宣告為 Bean,並注入到 Boss Bean 中:下面是使用傳統 XML 完成這個工作的配置檔案 beans.xml: 清單 4. beans.xml 將以上三個類配置成 Bean
當我們執行以下程式碼時,控制檯將正確打出 boss 的資訊: 清單 5. 測試類:AnnoIoCTest.java
這說明 Spring 容器已經正確完成了 Bean 建立和裝配的工作。 |
2 @Autowired
Spring 2.5 引入了 @Autowired 註釋,它可以對類成員變數、方法及建構函式進行標註,完成自動裝配的工作。 通過 @Autowired的使用來消除 set ,get方法。
要實現我們要精簡程式的目的。需要這樣來處理:
* 在applicationContext.xml中加入:
- <!-- 該 BeanPostProcessor 將自動對標註 @Autowired 的 Bean 進行注入 -->
- <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
Spring 通過一個 BeanPostProcessor 對 @Autowired 進行解析,所以要讓 @Autowired 起作用必須事先在 Spring 容器中宣告 AutowiredAnnotationBeanPostProcessor Bean。
* 修改在原來注入spirng容器中的bean的方法。
在域變數上加上標籤@Autowired,並且去掉 相應的get 和set方法
清單 6. 使用 @Autowired 註釋的 Boss.java
- package com.baobaotao;
- import org.springframework.beans.factory.annotation.Autowired;
- public class Boss {
- @Autowired
- private Car car;
- @Autowired
- private Office office;
- …
- }
* 在applicatonContext.xml中 把原來 引用的<porpery >標籤也去掉。
- <?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-2.5.xsd">
- <!-- 該 BeanPostProcessor 將自動起作用,對標註 @Autowired 的 Bean 進行自動注入 -->
- <bean class="org.springframework.beans.factory.annotation.
- AutowiredAnnotationBeanPostProcessor"/>
- <!-- 移除 boss Bean 的屬性注入配置的資訊 -->
- <bean id="boss" class="com.baobaotao.Boss"/>
- <bean id="office" class="com.baobaotao.Office">
- <property name="officeNo" value="001"/>
- </bean>
- <bean id="car" class="com.baobaotao.Car" scope="singleton">
- <property name="brand" value=" 紅旗 CA72"/>
- <property name="price" value="2000"/>
- </bean>
- </beans>
這樣,當 Spring 容器啟動時,AutowiredAnnotationBeanPostProcessor 將掃描 Spring 容器中所有 Bean,當發現 Bean 中擁有 @Autowired 註釋時就找到和其匹配(預設按型別匹配)的 Bean,並注入到對應的地方中去。
按照上面的配置,Spring 將直接採用 Java 反射機制對 Boss 中的 car 和 office 這兩個私有成員變數進行自動注入。所以對成員變數使用 @Autowired 後,您大可將它們的 setter 方法(setCar() 和 setOffice())從 Boss 中刪除。
當然,您也可以通過 @Autowired 對方法或建構函式進行標註,如果建構函式有兩個入參,分別是 bean1 和 bean2,@Autowired 將分別尋找和它們型別匹配的 Bean,將它們作為 CountryService (Bean1 bean1 ,Bean2 bean2) 的入參來建立 CountryService Bean。來看下面的程式碼: 對方法
- package com.baobaotao;
- public class Boss {
- private Car car;
- private Office office;
- @Autowired
- public void setCar(Car car) {
- this.car = car;
- }
- @Autowired
- public void setOffice(Office office) {
- this.office = office;
- }
- …
- }
這時,@Autowired 將查詢被標註的方法的入參型別的 Bean,並呼叫方法自動注入這些 Bean。而下面的使用方法則對建構函式進行標註:
- package com.baobaotao;
- public class Boss {
- private Car car;
- private Office office;
- @Autowired
- public Boss(Car car ,Office office){
- this.car = car;
- this.office = office ;
- }
- …
- }
由於 Boss() 建構函式有兩個入參,分別是 car 和 office,@Autowired 將分別尋找和它們型別匹配的 Bean,將它們作為 Boss(Car car ,Office office) 的入參來建立 Boss Bean。
相關文章
- springboot自動裝配(1)---@SpringBootApplication註解怎麼自動裝配各種元件Spring BootAPP元件
- 常用的自動裝配註解@Autowired @RequiredArgsConstructor @AllArgsConstructorUIStruct
- springboot2.x基礎教程:自動裝配原理與條件註解Spring Boot
- 淺嘗Spring註解開發_自定義註冊元件、屬性賦值、自動裝配Spring元件賦值
- 【Spring註解驅動開發】使用@Autowired@Qualifier@Primary三大註解自動裝配元件,你會了嗎?Spring元件
- Spring裝配Bean(五)profile註解和解決自動注入的歧義性SpringBean
- SpringBoot自動裝配原理之Configuration以及@Bean註解的使用Spring BootBean
- Spring自動裝配BeansSpringBean
- 自動裝配【Spring autowire】Spring
- Spring 自動裝配AutoWireSpring
- SpringBoot - 自動裝配Spring Boot
- Hyperf - 自動註解
- SpringBoot(14)—註解裝配BeanSpring BootBean
- Spring實戰:裝配bean-自動化裝配beanSpringBean
- Spring Boot 自動裝配原理Spring Boot
- springboot之自動裝配Spring Boot
- Spring IOC容器-自動裝配Spring
- Spring 註解自動裝載和檢測Spring
- SpringBoot自動裝配原理分析Spring Boot
- SpringBoot系列--自動裝配原理Spring Boot
- 2、spring注入及自動裝配Spring
- @EnableDiscoveryClient與Nacos自動註冊client
- Spring Boot 自動配置之@Enable* 與@Import註解Spring BootImport
- SpringBoot系列--自動裝配原理2Spring Boot
- SpringBoot自動裝配-原始碼分析Spring Boot原始碼
- SpringBoot自動裝配-自定義StartSpring Boot
- SpringBoot自動裝配原理解析Spring Boot
- Spring-04 Bean的自動裝配SpringBean
- SpringBoot 自動裝配的原理分析Spring Boot
- spring框架半自動註解Spring框架
- Spring入門(二):自動化裝配beanSpringBean
- SpringMvc自動裝配@Controller無效SpringMVCController
- Spring9:Autowire(自動裝配)機制Spring
- 深度解讀:Spring.3版本自動裝配機制的演變與實踐Spring
- spring自動裝配與spring_bean之間的關係(二)SpringBean
- spring心得6--自動裝配知識點講解及案例分析Spring
- SpringBoot | 2.1 SpringBoot自動裝配原理Spring Boot
- Springboot學習日記(三)自動裝配Spring Boot