我們都知道
SpringBoot
自問世以來,一直有一個響亮的口號"約定優於配置",其實一種按約定程式設計的軟體設計正規化,目的在於減少軟體開發人員在工作中的各種繁瑣的配置,我們都知道傳統的SSM框架的組合,會伴隨著大量的繁瑣的配置;稍有不慎,就可能各種bug,被人發現還以為我們技術很菜。而SpringBoot
的出現不僅大大提高的開發人員的效率,還能避免由於"手抖"帶來的配置錯誤。
很多程式設計師都感慨SpringBoot
的到來大大解放了生產力,但是也有聰明的程式猿會多思考一下下,SpringBoot
是怎麼做到的約定的配置?它配置在了哪裡?又是怎麼啟動的作用等等一系列的問號在跟女朋友花前月下的時候,依然會時不時冒出來。這嚴重影響了程式猿們的"幸"福生活,為了能廣大"程式猿"同胞過上幸福美滿的生活,今天我們麼就來一起跟隨原始碼探究下SpringBoot
到底是如何做到"約定優於配置"的。
首先,我們先介紹下我們的演示的專案環境,我們先試用 Spring Initializr
來建立一個SpirngBoot
工程。我們使用的版本是SpringBoot 2.4.3.RELEASE
接下來就只在 pom.xmL檔案中新增一個web工程的依賴,是為了觀察後面容器型別的原始碼。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
這樣我們的環境就準備好了。
我們跟著 SpringBoot
的原始碼來探究它的啟動流程,首先,先找到這個應用程式的入口主方法,在上面打一個斷點:
啟動之後,F7進入到 run()方法,我的電腦是點選F7(Step into)
到這裡會執行 new SpringApplication(primarySources)建立spring應用物件,繼續F7往下跟會執行 SpringApplication構造器
//SpringApplication構造器
public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) {
// 此處省略原始碼...
// 資源載入器
this.resourceLoader = resourceLoader;
Assert.notNull(primarySources, "PrimarySources must not be null");
this.primarySources = new LinkedHashSet(Arrays.asList(primarySources));
// 1.可能的web應用程式型別的型別。
this.webApplicationType = WebApplicationType.deduceFromClasspath();
this.bootstrappers = new ArrayList(this.getSpringFactoriesInstances(Bootstrapper.class));
// 2.設定初始化應用context
this.setInitializers(this.getSpringFactoriesInstances(ApplicationContextInitializer.class));
// 3.設定初始化監聽
this.setListeners(this.getSpringFactoriesInstances(ApplicationListener.class));
// 4.推演主程式類
this.mainApplicationClass = this.deduceMainApplicationClass();
}
很多不為人知的事情都是發生在這個物件初始化的時候,這裡我們都來一一解密
static WebApplicationType deduceFromClasspath() {
if (ClassUtils.isPresent("org.springframework.web.reactive.DispatcherHandler", (ClassLoader)null) && !ClassUtils.isPresent("org.springframework.web.servlet.DispatcherServlet", (ClassLoader)null) && !ClassUtils.isPresent("org.glassfish.jersey.servlet.ServletContainer", (ClassLoader)null)) {
return REACTIVE;
} else {
String[] var0 = SERVLET_INDICATOR_CLASSES;
int var1 = var0.length;
for(int var2 = 0; var2 < var1; ++var2) {
String className = var0[var2];
if (!ClassUtils.isPresent(className, (ClassLoader)null)) {
return NONE;
}
}
// 這裡是我們測試web容器
return SERVLET;
}
}
1. 推斷web 應用型別
這段程式碼是來推斷我們的應用是哪種web應用程式
public enum WebApplicationType{
NONE,// 不是web應用
SERVLET,// servlet容器
REACTIVE; // 反應型web應用(webflux)
}
當然一開始我們加入了web的依賴,所以我們是 servlet 容器。
2. 初始化應用上下文
在設定初始化應用context的時候,是先執行了
getSpringFactoriesInstances(ApplicationContextInitializer.class)
方法,引數是ApplicationContextInitializer.class
位元組碼物件。
private <T> Collection<T> getSpringFactoriesInstances(Class<T> type, Class<?>[] parameterTypes, Object... args) {
ClassLoader classLoader = this.getClassLoader();
// Use names and ensure unique to protect against dupLicates
Set<String> names = new LinkedHashSet(
// 載入ApplicationContextInitializer.class型別的類
// 這裡傳入就是引數 ApplicationContextInitializer.class
SpringFactoriesLoader.loadFactoryNames(type, classLoader));
// 例項化載入到的類
List<T> instances = this.createSpringFactoriesInstances(type, parameterTypes, classLoader, args, names);
AnnotationAwareOrderComparator.sort(instances);
// 返回
return instances;
}
我們先來看看他是如何載入到這些類
private static Map<String, List<String>> loadSpringFactories(ClassLoader classLoader) {
// 從快取中拿
Map<String, List<String>> result = (Map)cache.get(classLoader);
if (result != null) {
return result;
} else {
HashMap result = new HashMap();
try {
// 從資源路徑下載入
Enumeration urls = classLoader.getResources("META-INF/spring.factories");
while(urls.hasMoreElements()) {
URL url = (URL)urls.nextElement();
UrlResource resource = new UrlResource(url);
Properties properties = PropertiesLoaderUtils.loadProperties(resource);
Iterator var6 = properties.entrySet().iterator();
while(var6.hasNext()) {
Entry<?, ?> entry = (Entry)var6.next();
String factoryTypeName = ((String)entry.getKey()).trim();
String[] factoryImplementationNames = StringUtils.commaDelimitedListToStringArray((String)entry.getValue());
String[] var10 = factoryImplementationNames;
int var11 = factoryImplementationNames.length;
for(int var12 = 0; var12 < var11; ++var12) {
String factoryImplementationName = var10[var12];
((List)result.computeIfAbsent(factoryTypeName, (key) -> {
return new ArrayList();
})).add(factoryImplementationName.trim());
}
}
}
result.replaceAll((factoryType, implementations) -> {
return (List)implementations.stream().distinct().collect(Collectors.collectingAndThen(Collectors.toList(), Collections::unmodifiableList));
});
cache.put(classLoader, result);
// 返回所有的載入的類
return result;
} catch (IOException var14) {
throw new IllegalArgumentException("Unable to load factories from location [META-INF/spring.factories]", var14);
}
}
}
這裡有兩個載入配置類的地方其實都指向了META-INF/spring.factories
,通過斷點我們可以看到應用程式是載入了以下幾個jar下的 spring.factories
檔案。
雙擊Shifi搜尋spring.factories可以看到它存在於以下工程中
spring-boot-2.4.3.RELEASE.jar
下的 spring.factories (截圖未完整擷取)
spring-boot-autoconfigure-2.4.3.RELEASE.jar
下的 spring.factories
spring-beans-2.4.3.RELEASE.jar
下的 spring.factories
從Map中根據 org.springframework.context.ApplicationContextInitializer
的型別拿到需要的類初始化類,斷點進入 getOrDefault(factoryClassName,Collections.emptyList());方法
之後就是把載入到的需要初始化的類進行例項化新增到一個集合中等待備用
3. 初始化監聽器類
最關鍵的的還是這句
當我們跟進去之後,會發現在初始化監聽類的時候和上面初始化應用上下文是一樣的程式碼。唯一不同的是 getSpringFactoriesInstances(ApplicationListener.class))傳進去的是·ApplicationListener.class 所以這裡就不再贅述。
4. 推演主程式類
也就是這個最關鍵的程式碼了
this.mainApplicationClass = this.deduceMainApplicationClass();
到這裡就完成了SpringBoot
啟動過程中初始化SpringApplication 的過程。
這篇文章主要是給大家說了下SpringBoot
啟動過程中初始化SpringApplication
的流程,大致可以分為四個步驟∶
- 推演web應用的型別(如果沒有加web依賴型別NONE)
- 初始化 ApplicationContextInitializer
- 初始化 ApplicationListener
- 推演出主程式類
通過這樣四個步驟就完成了第一步 SpringApplication 的初始化過程。