當(dāng)前位置:首頁 > 公眾號精選 > 架構(gòu)師社區(qū)
[導(dǎo)讀]作者:vivo?互聯(lián)網(wǎng)服務(wù)器團(tuán)隊(duì)-Pengpeng一、前言大部分的配置都可以用Java類注解來代替,而在SpringBoot項(xiàng)目中見的最多的莫過于@SpringBootApplication注解了,它在每個SpringBoot的啟動類上都有標(biāo)注。這個注解對SpringBoot的啟...

作者:vivo?互聯(lián)網(wǎng)服務(wù)器團(tuán)隊(duì)-Peng peng

一、前言



大部分的配置都可以用Java類 注解來代替,而在SpringBoot項(xiàng)目中見的最多的莫過于@SpringBootApplication注解了,它在每個SpringBoot的啟動類上都有標(biāo)注。
這個注解對SpringBoot的啟動和自動配置到底有什么樣的影響呢?本文將為各位大佬解析它的源碼,揭開@SpringBootApplication注解神秘的面紗。

二、正文


對SpringBoot工程的自動配置很感興趣,于是學(xué)習(xí)其源碼并整理了其中一些內(nèi)容,如果有錯誤請大家指正~話不多說,直接上源碼;
@SpringBootApplication注解的源碼如下:
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@SpringBootConfiguration@EnableAutoConfiguration@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class), @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })public @interface SpringBootApplication {...}
可以看到這是一個復(fù)合注解,一共包括7個不同的注解,下面對這7個不同的注解進(jìn)行分析。
2.1 注解?
2.1.1 注解1@Target({ElementType.TYPE})
用來表示注解作用范圍,TYPE表示作用范圍為類或接口。
神秘又強(qiáng)大的@SpringBootApplication注解2.1.2 注解2:@Retention(RetentionPolicy.RUNTIME)
神秘又強(qiáng)大的@SpringBootApplication注解
2.1.3 注解3:@Documented表明這個注釋是由 javadoc記錄的。
2.1.4 注解4:@Inherited放在注解上,當(dāng)父類加了@SpringBootApplication注解時,子類也會繼承這個注解(對接口的實(shí)現(xiàn)類無效)。
2.1.5 注解5:@SpringBootConfiguration底層仍是@Configuration注解, 源碼如下:
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Configurationpublic @interface SpringBootConfiguration {}
2.1.6 注解6:@ComponetScan
@ComponentScan這個注解在Spring中很重要,它對應(yīng)XML配置中的元素@ComponentScan的功能其實(shí)就是自動掃描并加載符合條件的組件(比如@Component和@Repository等)或者bean定義,最終將這些bean定義加載到IoC容器中。
可以通過basePackages等屬性來細(xì)粒度的定制@ComponentScan自動掃描的范圍,如果不指定,則默認(rèn)Spring框架實(shí)現(xiàn)會從聲明@ComponentScan所在類的package進(jìn)行掃描。所以SpringBoot的啟動類最好是放在root package下,因?yàn)槟J(rèn)不指定basePackages。
2.2 注解:@EnableAutoConfiguration
個人感覺@EnableAutoConfiguration這個Annotation最為重要它的作用可以概括為:借助@Import的幫助,將所有符合自動配置條件的bean定義加載到IoC容器。
其源碼如下:
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@AutoConfigurationPackage@Import(AutoConfigurationImportSelector.class)public @interface EnableAutoConfiguration { String ENABLED_OVERRIDE_PROPERTY = "spring.boot.enableautoconfiguration"; Class[] exclude() default {}; String[] excludeName() default {};}這里需要關(guān)注@AutoConfigurationPackage@Import(AutoConfigurationImportSelector.class)兩個注解。
2.2.1 注釋:@AutoConfigurationPackage
源碼如下:
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@AutoConfigurationPackage@Import(AutoConfigurationImportSelector.class)public @interface EnableAutoConfiguration { String ENABLED_OVERRIDE_PROPERTY = "spring.boot.enableautoconfiguration"; Class[] exclude() default {}; String[] excludeName() default {};}
可以發(fā)現(xiàn)這個注解的核心其實(shí)也是Import注解,表示對于標(biāo)注該注解的類的包,應(yīng)當(dāng)使用AutoConfigurationPackages注冊。
接著看Registrar這個類:
static class Registrar implements ImportBeanDefinitionRegistrar, DeterminableImports {
@Override //metadata是我們注解所在的元信息 public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry) { //將我們注解所在包下所有的組件進(jìn)行注冊 register(registry, new PackageImport(metadata).getPackageName()); }
@Override public Set determineImports(AnnotationMetadata metadata) { return Collections.singleton(new PackageImport(metadata)); }}
這個類中的核心方法是register方法:
private static final String BEAN = AutoConfigurationPackages.class.getName(); public static void register(BeanDefinitionRegistry registry, String... packageNames) { if (registry.containsBeanDefinition(BEAN)) { BeanDefinition beanDefinition = registry.getBeanDefinition(BEAN); ConstructorArgumentValues constructorArguments = beanDefinition.getConstructorArgumentValues(); constructorArguments.addIndexedArgumentValue(0, addBasePackages(constructorArguments, packageNames)); } else { GenericBeanDefinition beanDefinition = new GenericBeanDefinition(); beanDefinition.setBeanClass(BasePackages.class); beanDefinition.getConstructorArgumentValues().addIndexedArgumentValue(0, packageNames); beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE); registry.registerBeanDefinition(BEAN, beanDefinition); }}
register方法的邏輯非常清晰:如果這個bean已經(jīng)被注冊,就獲取它的構(gòu)造函數(shù)參數(shù)值,并將包名添加進(jìn)去;否則就創(chuàng)建一個新的bean定義并進(jìn)行注冊。通過@AutoConfigurationPackage這個注解,可以將注解所在包下所有的組件進(jìn)行注冊。
2.2.2 注解:@Import(AutoConfigurationImportSelector.class)
這個注解導(dǎo)入了AutoConfigurationImportSelector這個類這個類的核心方法是selectImports方法,實(shí)現(xiàn)自ImportSelector接口。方法基于我們在pom.xml文件中配置的jar包和組件進(jìn)行導(dǎo)入。所以方法返回的是一個Class全路徑的String數(shù)組,返回的Class會被Spring容器管理。
方法源碼如下:
@Overridepublic String[] selectImports(AnnotationMetadata annotationMetadata) { if (!isEnabled(annotationMetadata)) { return NO_IMPORTS; } AutoConfigurationMetadata autoConfigurationMetadata = AutoConfigurationMetadataLoader .loadMetadata(this.beanClassLoader); AutoConfigurationEntry autoConfigurationEntry = getAutoConfigurationEntry(autoConfigurationMetadata, annotationMetadata); return StringUtils.toStringArray(autoConfigurationEntry.getConfigurations());}
這個方法的結(jié)構(gòu)也很清晰,首先通過isEnabled方法判斷是否需要進(jìn)行導(dǎo)入,如果需要導(dǎo)入的話,通過loadMetadata方法獲取配置信息,并通過getAutoConfigurationEntry進(jìn)行自動裝配。
isEnabled方法源碼如下:
protected boolean isEnabled(AnnotationMetadata metadata) { if (getClass() == AutoConfigurationImportSelector.class) { return getEnvironment().getProperty(EnableAutoConfiguration.ENABLED_OVERRIDE_PROPERTY, Boolean.class, true); } return true;}
這個方法通過EnableAutoConfiguration.ENABLED_OVERRIDE_PROPERTY這個配置項(xiàng)進(jìn)行判斷是否需要自動配置,默認(rèn)為true。
loadMetadata方法源碼如下:
protected static final String PATH = "META-INF/" "spring-autoconfigure-metadata.properties";
public static AutoConfigurationMetadata loadMetadata(ClassLoader classLoader) { return loadMetadata(classLoader, PATH); }
static AutoConfigurationMetadata loadMetadata(ClassLoader classLoader, String path) { try { Enumeration urls = (classLoader != null) ? classLoader.getResources(path) : ClassLoader.getSystemResources(path); Properties properties = new Properties(); while (urls.hasMoreElements()) { properties.putAll(PropertiesLoaderUtils.loadProperties(new UrlResource(urls.nextElement()))); } return loadMetadata(properties); } catch (IOException ex) { throw new IllegalArgumentException("Unable to load @ConditionalOnClass location [" path "]", ex); } } static AutoConfigurationMetadata loadMetadata(Properties properties) { return new PropertiesAutoConfigurationMetadata(properties); }
可以看到這個方法會加載META-INF/spring-autoconfigure-metadata.properties下的所有配置信息并包裝成AutoConfigurationMetadata對象返回。
注:spring-autoconfigure-metadata.properties文件在spring-boot-autoconfigure-2.1.9.RELEASE.jar/META-INF下。
getAutoConfigurationEntry方法源碼如下:
protected AutoConfigurationEntry getAutoConfigurationEntry(AutoConfigurationMetadata autoConfigurationMetadata, AnnotationMetadata annotationMetadata) { if (!isEnabled(annotationMetadata)) { return EMPTY_ENTRY; } AnnotationAttributes attributes = getAttributes(annotationMetadata); List configurations = getCandidateConfigurations(annotationMetadata, attributes); configurations = removeDuplicates(configurations); Set exclusions = getExclusions(annotationMetadata, attributes); checkExcludedClasses(configurations, exclusions); configurations.removeAll(exclusions); configurations = filter(configurations, autoConfigurationMetadata); fireAutoConfigurationImportEvents(configurations, exclusions); return new AutoConfigurationEntry(configurations, exclusions);}
這個方法是AutoConfiguration的主流程方法,可以將這個方法的每一行看做一個步驟,那么處理步驟如下:
1.?加載配置了@EnableAutoConfiguration注解的屬性值getAttribute方法:
protected AnnotationAttributes getAttributes(AnnotationMetadata metadata) { String name = getAnnotationClass().getName(); AnnotationAttributes attributes = AnnotationAttributes.fromMap(metadata.getAnnotationAttributes(name, true)); Assert.notNull(attributes, () -> "No auto-configuration attributes found. Is " metadata.getClassName() " annotated with " ClassUtils.getShortName(name) "?"); return attributes;}
2.得到META-INF/spring.factories文件中以@EnableAutoConfiguration完全限定類名做key的value,getCandidateConfigurations方法:
protected List getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) { List configurations = SpringFactoriesLoader.loadFactoryNames(getSpringFactoriesLoaderFactoryClass(), getBeanClassLoader()); Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you " "are using a custom packaging, make sure that file is correct."); return configurations;}protected Class getSpringFactoriesLoaderFactoryClass() { return EnableAutoConfiguration.class;}
其中,SpringFactoriesLoader.loadFactoryNames()這個方法的作用是使用給定的類加載器從META-INF/spring.factories加載給定類型的工廠實(shí)現(xiàn)的完全限定類名;
3.去重;4.得到需要排除的類的類名,這些類可以在@EnableAutoConfiguration注解中配置;5.檢查這兩個集合;6.把需要排除的類移除;
7.根據(jù)OnBeanCondition、OnClassCondition等條件進(jìn)行過濾(有興趣可以深入了解);
8.廣播事件,得到AutoConfigurationImportListener所有實(shí)現(xiàn)類,然后生成事件進(jìn)行廣播;
9.把需要裝配和排除的類完全限定名封裝成了AutoConfigurationEntry對象返回。

因此,@EnableAutoConfiguration可以簡單總結(jié)為:從classpath中搜尋所有的META-INF/spring.factories配置文件,并將其中EnableAutoConfiguration對應(yīng)的配置項(xiàng)通過反射實(shí)例化為應(yīng)的標(biāo)注@Configuration的IoC容器配置類,并加載到IoC容器。

三、小結(jié)


通過以上分析可知@SpringBootApplication解的運(yùn)作是通過@SpringApplicationConfiguration聲明被標(biāo)注類為配置類,從而被AnnotationConfigApplicationContext掃描并初始化Spring容器。
通過@EnableAutoConfiguration來掃描,過濾并加載所需要的組件;通過@ComponentScan掃描并注冊所有標(biāo)注了@Component及其子注解的類;這些注解的共同運(yùn)作實(shí)現(xiàn)了springboot工程強(qiáng)大的自動配置能力。

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險,如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術(shù)學(xué)會聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉