Spring使用註解自動裝配
阿新 • • 發佈:2022-04-21
1匯入約束
- 匯入約束:context約束
- 開啟註解的支援 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" xmlns:aop="http://www.springframework.org/schema/aop" 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 http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd"> <!--開啟註解的支援--> <context:annotation-config/> <bean id="cat" class="com.liu.pojo.Cat"></bean> <bean id="dog" class="com.liu.pojo.Dog"></bean> <!-- buName 會自動在容器上下文查詢,和自己物件set方法後面的值對應的beanID! byType 會自動在容器上下文查詢,和自己物件屬性型別相同的bean! --> <bean id="people" class="com.liu.pojo.People"></bean> </beans>
@Autowried
直接在屬性上使用即可!也可以在set方式上使用!
使用Autowired 我們可以不用編寫Set方法了,前提是你這個自動裝配的屬性在IOC(Spring)容器中存在,且符合名字byname!
@Nullable 欄位標記了這個註解,說明這個欄位可以為null
測試程式碼
public class Peop1e { //如果顯示定義了Autowired的required屬性為false,說明這個物件可以為nu11,否則不允許為空@Autowired(required = false) private cat cat; @Autowired private Dog dog;private string name;
如果@Autowired自動裝配的環境比較複雜,自動裝配無法通過一個註解【@Autowired】完成的時候、我們可以使用@Qualifier(value="xxx")去配置@Autowired的使用,指定一個唯一的bean物件注入!
<bean id="cat0" class="com.liu.pojo.Cat"></bean>
<bean id="cat1" class="com.liu.pojo.Cat"></bean>
@Autowired @Qualifier(value = "cat1") private Cat cat; @resource(value = "dog1") private Dog dog;
@Resource和@Autowired的區別:
- 都是用來自動裝配的,都可以放在屬性欄位上
- @Autowired通過byType的方式實現,而且必須要求這個物件存在!【常用】
- @Resource預設通過byname的方式實現,如果找不到名字,則通過byType實現!如果兩個都找不到的情況下,就報錯!【常用】
- 執行順序不同:@Autowired通過byType的方式實現。@Resource預設通過byname的方式實現。