溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝

發(fā)布時(shí)間:2022-05-23 11:25:14 來(lái)源:億速云 閱讀:135 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝

Springboot可以說(shuō)是Java程序員必備技能了,大家都知道Springboot最終可以通過(guò)maven打成jar包,然后直接使用java -jar命令運(yùn)行一個(gè)Web工程(或其它)。這樣就避免了原先基于tomcat的web工程的復(fù)雜操作。Springboot能夠使Web服務(wù)的部署簡(jiǎn)單到如此程度是因?yàn)槠鋬?nèi)置了Jetty(或Tomcat)服務(wù)器,并且在容器啟動(dòng)過(guò)程中start該服務(wù)器,成功運(yùn)行Web服務(wù)。

相信各位Springbooter一定不會(huì)陌生下面的代碼,無(wú)論是初學(xué)Springboot的新同學(xué),或是開(kāi)始研究Springboot源碼的新司機(jī),這段代碼幾乎是我們的落腳點(diǎn)。我們?nèi)绱耸煜に?,以至于認(rèn)為它就是Springboot這個(gè)魔法樂(lè)園的起點(diǎn)。但真的是這樣嗎?

 @SpringBootApplication
 public class Springboot01helloworldApplication {
     public static void main(String[] args) {
         SpringApplication.run(Springboot01helloworldApplication.class, args);
     }
 }

我們都知道,一個(gè)Java工程打包過(guò)后,這個(gè)jar包的入口描述被寫(xiě)在了/META-INF/MANIFEST.MF文件下,下面讓我們來(lái)看看這個(gè)文件內(nèi)容:

 Manifest-Version: 1.0
 Archiver-Version: Plexus Archiver
 Built-By: MrXu
 Start-Class: com.vivo.internet.nex.repeater.console.RepeaterConsoleApplication
 Spring-Boot-Classes: BOOT-INF/classes/
 Spring-Boot-Lib: BOOT-INF/lib/
 Spring-Boot-Version: 1.5.19.RELEASE
 Created-By: Apache Maven 3.8.1
 Build-Jdk: 1.8.0_281
 Main-Class: org.springframework.boot.loader.JarLauncher

文件入口的描述為Main-Class對(duì)應(yīng)的value,即org.springframework.boot.loader.JarLauncher。那么,接下來(lái)我們需要看下這個(gè)類(lèi)究竟做了什么?

 // JarLauncher.java
 public class JarLauncher extends ExecutableArchiveLauncher {
     static final String BOOT_INF_CLASSES = "BOOT-INF/classes/";
     static final String BOOT_INF_LIB = "BOOT-INF/lib/";
     public JarLauncher() {
     }
     // ...省略無(wú)關(guān)代碼
     public static void main(String[] args) throws Exception {
         (new JarLauncher()).launch(args);
     }
 }

明顯的main函數(shù)吸引了我們的注意,沒(méi)錯(cuò)了,這就是入口,看看JarLauncher的空構(gòu)造并沒(méi)有任何代碼,我們先往它的父類(lèi)找找:

 // ExecutableArchiveLauncher.java
 public abstract class ExecutableArchiveLauncher extends Launcher {
     public ExecutableArchiveLauncher() {
         try {
             this.archive = this.createArchive();
         } catch (Exception var2) {
             throw new IllegalStateException(var2);
         }
     }
     // ...省略
 }
 
 // Launcher.java
 public abstract class Launcher {
     public Launcher() {}
     // ...省略無(wú)關(guān)代碼
 }

從代碼中可以看出,真正干了事情的父類(lèi)是ExecutableArchiveLauncher,它在初始化時(shí)構(gòu)造了archive實(shí)例,該實(shí)例封裝了/META-INF/MANIFEST.MF文件的信息。后面我們也會(huì)用到它。

隨后便是launch方法,我們只關(guān)系核心執(zhí)行流程:

 // Launcher.java
 protected void launch(String[] args) throws Exception {
     JarFile.registerUrlProtocolHandler();
     ClassLoader classLoader = this.createClassLoader(this.getClassPathArchives());
     this.launch(args, this.getMainClass(), classLoader);
 }
 // ExecutableArchiveLauncher.java
 protected String getMainClass() throws Exception {
     Manifest manifest = this.archive.getManifest();
     String mainClass = null;
     if (manifest != null) {
         mainClass = manifest.getMainAttributes().getValue("Start-Class");
     }
 
     if (mainClass == null) {
         throw new IllegalStateException("No 'Start-Class' manifest entry specified in " + this);
     } else {
         return mainClass;
     }
 }

這里首先調(diào)用子類(lèi)ExecutableArchiveLauncher的getMainClass方法,主要邏輯就是從/META-INF/MANIFEST.MF文件中獲取Start-Class信息,對(duì)應(yīng)上文就是com.vivo.internet.nex.repeater.console.RepeaterConsoleApplication字符串,這樣就和我們寫(xiě)的啟動(dòng)類(lèi)關(guān)聯(lián)上了。

然后是launch方法的具體執(zhí)行,launch()首先創(chuàng)建一個(gè)MainMethodRunner,將上文獲取的Start-Class和透?jìng)鞯膮?shù)傳遞進(jìn)去,然后調(diào)用MainMethodRunner的run方法。run方法的執(zhí)行也非常簡(jiǎn)單,就是加載Start-Class對(duì)應(yīng)的啟動(dòng)類(lèi),然后反射調(diào)用啟動(dòng)類(lèi)的main方法。之后就是容器的初始化過(guò)程了。

 // Launcher.java
 protected void launch(String[] args, String mainClass, ClassLoader classLoader) throws Exception {
     Thread.currentThread().setContextClassLoader(classLoader);
     // 這里首先調(diào)用createMainMethodRunner創(chuàng)建一個(gè)MainMethodRunner實(shí)例,將mainClass和args參數(shù)傳入。隨后調(diào)用
     this.createMainMethodRunner(mainClass, args, classLoader).run();
 }
 protected MainMethodRunner createMainMethodRunner(String mainClass, String[] args, ClassLoader classLoader) {
     return new MainMethodRunner(mainClass, args);
 }
 
 // MainMethodRunner.java
 public MainMethodRunner(String mainClass, String[] args) {
     this.mainClassName = mainClass;
     this.args = args != null ? (String[])args.clone() : null;
 }
 public void run() throws Exception {
     Class<?> mainClass = Thread.currentThread().getContextClassLoader().loadClass(this.mainClassName);
     Method mainMethod = mainClass.getDeclaredMethod("main", String[].class);
     mainMethod.invoke((Object)null, this.args);
 }

關(guān)于“SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“SpringBoot應(yīng)用的啟動(dòng)入口怎么封裝”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI