您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用Spring注解怎么實現Bean自動裝配功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
1.導入約束:context約束
2.配置注解的支持: context:annotation-config/
<?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 https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <context:annotation-config/> </beans>
通過ByType的方式實現自動裝配,且必須要求該對象存在。
直接在屬性上使用,也可以在set方法上使用。
使用Autowired時,可以不用編寫set方法,前提是你這個自動裝配的屬性在IOC容器中存在,且符合Byname方式
@Autowired private Cat cat;
@Autowired @Qualifier(value = "dog111") private Dog dog;
如果@Autowired自動裝配的環境比較復雜,可以使用@Qualifier來輔助@Autowired完成自動裝配,
通過@Qualifier(value = “dog111”)指定Bean的ID來裝配。
關于使用Spring注解怎么實現Bean自動裝配功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。