今天我們主要講解的是Spring依賴註入。在本文中,我們主要圍繞bean填充屬性的欄位和setter方法展開討論。要記住的是,在進行屬性註入時,我們首先需要找到註入點併進行緩存,然後才會真正進行屬性註入。需要註意的是,靜態欄位或方法是不會進行依賴註入的。最後,我們簡單地介紹了一下關鍵源碼,以及對@R... ...
在之前的講解中,我樂意將源碼拿出來並粘貼在文章中,讓大家看一下。然而,我最近意識到這樣做不僅會占用很多篇幅,而且實際作用很小,因為大部分人不會花太多時間去閱讀源碼。
因此,從今天開始,我將採取以下幾個步驟:首先,我會提前畫出一張圖來展示本章節要講解的內容的調用鏈路,供大家參考。其次,在文章中,我只會展示最核心的代碼或關鍵的類。剩下的內容將主要用來講解原理。如果你真的在學習Spring源碼,我希望你能打開你的項目,並跟著我一起深入閱讀源碼。現在,讓我們開始吧。今天的重點是Spring的依賴註入。
基本使用
首先,值得註意的是,在Spring框架中,依賴註入是在bean生成後進行屬性賦值的。由於我們的bean通常都是單例模式,所以每個類的屬性都必須進行註入。在這個過程中,會涉及到代理、反射等技術的應用。如果你對這些概念不太熟悉的話,建議你提前補充一下相關的前提知識。瞭解這些基本概念將有助於你更好地理解和掌握Spring框架的依賴註入機制。
首先需要註意的是,儘管圖示可能只展示了類之間的簡單調用關係,但這並不代表實際的依賴註入過程就是如此簡單。實際上,Spring框架的版本和配置方式可能會導致不同的鏈路調用。然而,無論具體的版本差異如何,Spring框架的依賴註入機制的基本邏輯大致是一樣的。
Spring的依賴註入有兩種方式:手動註入、自動註入。下麵我們詳細講解一下這兩種方式。
手動註入
在手動註入中,離不開XML配置。有兩種常見的方式可以實現手動註入:通過屬性和通過構造器。手動就是我們人為控制註入的值,下麵是兩種配置方式:
<bean id="user" class="com.xiaoyu.service.UserService" >
<property name="orderService" ref="orderService"/>
</bean>
上面是通過使用set方法進行依賴註入的方式來實現。
<bean id="user" class="com.xiaoyu.service.UserService">
<constructor-arg index="0" ref="orderService"/>
</bean>
上面是通過使用構造方法進行依賴註入的方式來實現。
自動註入
XML配置
XML也有自動分配的機制,只要不是我們手動指定註入類,那就是自動註入,讓我們一起瞭解如何進行設置。
在XML中,我們可以通過在定義一個Bean時指定自動註入模式來進行優化。這些模式包括byType、byName、constructor、default和no。通過使用這些模式,我們可以更靈活地控制Bean的註入方式。
<bean id="user" class="com.xiaoyu.service.UserService" autowire="byType"/>
<bean id="user" class="com.xiaoyu.service.UserService" autowire="byName"/>
剩下的不舉例了,這兩種類型,都需要我們的UserService對象有相應的set方法。因為註入的點就是先找到set方法,然後在填充屬性之前,Spring會去解析當前類,把當前類的所有方法都解析出來。Spring會解析每個方法,得到對應的PropertyDescriptor對象。PropertyDescriptor對象中包含了幾個屬性:
name:獲取截取後的方法名稱:截取規則如下:
- get開頭,則去除get,比如“getXXX”,那麼name=XXX(首字母小寫),需無參或者第一個參數為int類型
- is開頭不並且返回值為boolean類型,比如“isXXX”,那麼name=XXX(首字母小寫),需無參
- set開頭並且有無返回值,比如“setXXX”,那麼name=XXX(首字母小寫),前提是得有入參,如果無入參是解析不到set開頭的方法的
readMethodRef:如果是get開頭或者is開頭的方法,都是readMethodRef,並且存儲的引用。
readMethodName:是get開頭或者is開頭的方法名。包含get/is
writeMethodRef:set開頭的方法引用。
writeMethodName:set開頭的方法名,包含set。
propertyTypeRef:如果是讀方法,則獲取的是返回值類型,如果是set寫方法,則獲取的是入參類型。
具體實現可自行查看源碼:java.beans.Introspector#getTargetPropertyInfo()
@Autowired註解
這個註解大家都很熟悉,我簡單介紹一下它的基礎用法。最後,通過查看源碼,我們將依賴註入的過程完整地連起來。
屬性註入
基本用法示例:
@Component
public class UserService {
@Autowired
public OrderService orderService;
}
setter方法註入
基本用法示例:
@Component
public class UserService {
public OrderService orderService;
@Autowired
public void setOrderService(OrderService orderService){
System.out.println(0);
this.orderService = orderService;
}
}
構造器註入
基本用法示例:
@Component
public class UserService {
public OrderService orderService;
@Autowired
public UserService(OrderService orderService){
this.orderService = orderService;
}
}
依賴註入關鍵源碼解析
尋找註入點
在創建一個Bean的過程中,Spring會利用AutowiredAnnotationBeanPostProcessor的postProcessMergedBeanDefinition()方法來找出註入點併進行緩存。具體的找註入點的流程如下:
- 如果一個Bean的類型是String,那麼則根本不需要進行依賴註入
- 遍歷目標類中的所有Field欄位,field上是否存在@Autowired、@Value、@Inject中的其中一個
- static 欄位不是註入點,不會進行自動註入
- 構造註入點,獲取@Autowired中的required屬性的值,將欄位封裝到AutowiredFieldElement對象。
- 遍歷目標類中的所有Method方法。
- method上是否存在@Autowired、@Value、@Inject中的其中一個
- static method不是註入點,不會進行自動註入
- set方法最好有入參,沒有入參或提示日誌。
- 構造註入點,獲取@Autowired中的required屬性的值,將方法封裝到AutowiredMethodElement對象。
- 查看是否還有父類,如果有再次迴圈直到沒有父類。
- 將剛纔構造好的註入點全都封裝到InjectionMetadata,作為當前Bean對於的註入點集合對象,並緩存。
static欄位或方法為什麼不支持註入
在源碼中,Spring會判斷欄位或方法是否是static來決定是否進行註入。如果欄位或方法是static的,Spring不會進行註入操作。這是因為靜態欄位或方法是屬於類的,而不是屬於具體的實例。因此,在進行依賴註入時,Spring會註入給具體的實例,而不是整個類。
我們知道Spring是支持創建原型bean的,也就是多例模式。
@Component
@Scope("prototype")
public class UserService {
@Autowired
private static OrderService orderService;
public void test() {
System.out.println("test123");
}
}
確實,如果OrderService是prototype類型的,並且Spring支持註入static欄位,那麼每次註入OrderService到UserService時都會創建一個新的實例。這樣做確實違背了static欄位的本意,因為static欄位是屬於類的,而不是實例的。
註入點註入
在依賴註入的過程中,註入點的註入肯定會在populateBean方法中進行屬性註入。在這個過程中,會調用AutowiredAnnotationBeanPostProcessor的postProcessProperties()方法,該方法會直接給對象中的屬性賦值。這個方法會遍歷每個註入點(InjectedElement),併進行依賴註入操作。
屬性欄位註入
- 遍歷所有AutowiredFieldElement對象。
- 將對應的欄位封裝到DependencyDescriptor。
- 調用beanFactory.resolveDependency來獲取真正需要註入的bean。
- 最後將此次封裝的DependencyDescriptor和beanname緩存起來,主要考慮到了原型bean的創建
- 利用反射給filed賦值
setter方法註入
- 遍歷所有AutowiredMethodElement對象。
- 調用resolveMethodArguments方法
- 遍歷每個方法參數,找到匹配的bean對象,將方法對象封裝到DependencyDescriptor中。
- 調用beanFactory.resolveDependency來獲取真正需要註入的bean。
- 最後將此次封裝的DependencyDescriptor和beanname緩存起來,主要考慮到了原型bean的創建
- 利用反射給filed賦值
我們只需要關註findAutowiringMetadata方法的實現,因為大家普遍瞭解註入的概念。我們主要關註的是它是如何找到註入點的。
private InjectionMetadata findAutowiringMetadata(String beanName, Class<?> clazz, @Nullable PropertyValues pvs) {
// Fall back to class name as cache key, for backwards compatibility with custom callers.
String cacheKey = (StringUtils.hasLength(beanName) ? beanName : clazz.getName());
// Quick check on the concurrent map first, with minimal locking.
InjectionMetadata metadata = this.injectionMetadataCache.get(cacheKey);
if (InjectionMetadata.needsRefresh(metadata, clazz)) {
synchronized (this.injectionMetadataCache) {
metadata = this.injectionMetadataCache.get(cacheKey);
if (InjectionMetadata.needsRefresh(metadata, clazz)) {
if (metadata != null) {
metadata.clear(pvs);
}
// 解析註入點並緩存
metadata = buildAutowiringMetadata(clazz);
this.injectionMetadataCache.put(cacheKey, metadata);
}
}
}
return metadata;
}
private InjectionMetadata buildAutowiringMetadata(final Class<?> clazz) {
// 如果一個Bean的類型是String...,那麼則根本不需要進行依賴註入
if (!AnnotationUtils.isCandidateClass(clazz, this.autowiredAnnotationTypes)) {
return InjectionMetadata.EMPTY;
}
List<InjectionMetadata.InjectedElement> elements = new ArrayList<>();
Class<?> targetClass = clazz;
do {
final List<InjectionMetadata.InjectedElement> currElements = new ArrayList<>();
// 遍歷targetClass中的所有Field
ReflectionUtils.doWithLocalFields(targetClass, field -> {
// field上是否存在@Autowired、@Value、@Inject中的其中一個
MergedAnnotation<?> ann = findAutowiredAnnotation(field);
if (ann != null) {
// static filed不是註入點,不會進行自動註入
if (Modifier.isStatic(field.getModifiers())) {
if (logger.isInfoEnabled()) {
logger.info("Autowired annotation is not supported on static fields: " + field);
}
return;
}
// 構造註入點
boolean required = determineRequiredStatus(ann);
currElements.add(new AutowiredFieldElement(field, required));
}
});
// 遍歷targetClass中的所有Method
ReflectionUtils.doWithLocalMethods(targetClass, method -> {
Method bridgedMethod = BridgeMethodResolver.findBridgedMethod(method);
if (!BridgeMethodResolver.isVisibilityBridgeMethodPair(method, bridgedMethod)) {
return;
}
// method上是否存在@Autowired、@Value、@Inject中的其中一個
MergedAnnotation<?> ann = findAutowiredAnnotation(bridgedMethod);
if (ann != null && method.equals(ClassUtils.getMostSpecificMethod(method, clazz))) {
// static method不是註入點,不會進行自動註入
if (Modifier.isStatic(method.getModifiers())) {
if (logger.isInfoEnabled()) {
logger.info("Autowired annotation is not supported on static methods: " + method);
}
return;
}
// set方法最好有入參
if (method.getParameterCount() == 0) {
if (logger.isInfoEnabled()) {
logger.info("Autowired annotation should only be used on methods with parameters: " +
method);
}
}
boolean required = determineRequiredStatus(ann);
PropertyDescriptor pd = BeanUtils.findPropertyForMethod(bridgedMethod, clazz);
currElements.add(new AutowiredMethodElement(method, required, pd));
}
});
elements.addAll(0, currElements);
targetClass = targetClass.getSuperclass();
}
while (targetClass != null && targetClass != Object.class);
return InjectionMetadata.forElements(elements, clazz);
}
@Resource
說到這裡,可能有些小伙伴還會使用@Resource註解來進行依賴註入。其實,這和@Autowired註解的邏輯是一樣的,只是調用的是其他類的相關方法。具體來說,通過org.springframework.context.annotation.CommonAnnotationBeanPostProcessor#postProcessMergedBeanDefinition方法來查找註入點,然後在org.springframework.context.annotation.CommonAnnotationBeanPostProcessor#postProcessProperties方法中進行屬性填充。關於這些細節我們就不詳細討論了,如果感興趣的話,可以查看一下源碼。
@Qualifier
對於使用過@Autowired註解的同學來說,他們肯定也瞭解@Qualifier註解的作用。@Qualifier主要用於解決一個介面有多個實現類的情況。為了更好地理解,我們來舉一個簡單的例子:
public interface User {
}
@Component
@Qualifier("userF")
public class UserF implements User{
}
@Component
@Qualifier("userM")
public class UserM implements User{
}
在上述內容中,簡要定義了兩個實現。現在我們需要使用它們。
@Component
public class UserService {
@Autowired
@Qualifier("userM")
public User user;
}
在這種情況下,會去匹配userM的實體類,而不會出現多個匹配類導致異常。那麼它是如何解決這個問題的呢?它是在什麼時候找到@Qualifier註解的呢?具體的源碼如下所示:
protected boolean checkQualifier(
BeanDefinitionHolder bdHolder, Annotation annotation, TypeConverter typeConverter) {
// 檢查某個Qualifier註解和某個BeanDefinition是否匹配
// annotation是某個屬性或某個方法參數前上所使用的Qualifier
Class<? extends Annotation> type = annotation.annotationType();
RootBeanDefinition bd = (RootBeanDefinition) bdHolder.getBeanDefinition();
// 首先判斷BeanDefinition有沒有指定類型的限定符
AutowireCandidateQualifier qualifier = bd.getQualifier(type.getName());
if (qualifier == null) {
qualifier = bd.getQualifier(ClassUtils.getShortName(type));
}
if (qualifier == null) {
// First, check annotation on qualified element, if any
Annotation targetAnnotation = getQualifiedElementAnnotation(bd, type);
// Then, check annotation on factory method, if applicable
if (targetAnnotation == null) {
targetAnnotation = getFactoryMethodAnnotation(bd, type);
}
if (targetAnnotation == null) {
RootBeanDefinition dbd = getResolvedDecoratedDefinition(bd);
if (dbd != null) {
targetAnnotation = getFactoryMethodAnnotation(dbd, type);
}
}
if (targetAnnotation == null) {
// Look for matching annotation on the target class
if (getBeanFactory() != null) {
try {
// 拿到某個BeanDefinition對應的類上的@Qualifier
Class<?> beanType = getBeanFactory().getType(bdHolder.getBeanName());
if (beanType != null) {
targetAnnotation = AnnotationUtils.getAnnotation(ClassUtils.getUserClass(beanType), type);
}
}
catch (NoSuchBeanDefinitionException ex) {
// Not the usual case - simply forget about the type check...
}
}
if (targetAnnotation == null && bd.hasBeanClass()) {
targetAnnotation = AnnotationUtils.getAnnotation(ClassUtils.getUserClass(bd.getBeanClass()), type);
}
}
// 註解對象的equals比較特殊,JDK層面用到了動態代理,會比較value
if (targetAnnotation != null && targetAnnotation.equals(annotation)) {
return true;
}
}
......
return true;
}
他其實是在我們上面所說的屬性註入的時候去匹配查找的。具體來說,他會調用beanFactory.resolveDependency方法來獲取真正需要註入的bean時進行查找。如果想要查看相關的源碼,可以去查看org.springframework.beans.factory.annotation.QualifierAnnotationAutowireCandidateResolver#isAutowireCandidate
方法。在這個方法中會有更詳細的解釋。
總結
今天我們主要講解的是Spring依賴註入。在本文中,我們主要圍繞bean填充屬性的欄位和setter方法展開討論。要記住的是,在進行屬性註入時,我們首先需要找到註入點併進行緩存,然後才會真正進行屬性註入。需要註意的是,靜態欄位或方法是不會進行依賴註入的。最後,我們簡單地介紹了一下關鍵源碼,以及對@Resource和@Qualifier進行了簡單的分析。如果想要學習Spring源碼,一定要結合圖例去理解,否則很容易暈頭轉向。