您好,登錄后才能下訂單哦!
本篇內容主要講解“SpringBoot啟動流程是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot啟動流程是什么”吧!
SpringBoot應用程序的啟動過程可以分為以下幾個步驟:
加載應用程序上下文
掃描應用程序中的所有組件
自動配置應用程序環境
啟動嵌入式Web服務器
SpringBoot 應用程序的上下文是一個包含所有應用程序組件的容器。在啟動過程中,SpringBoot 會加載并初始化這個容器。
這個步驟的源代碼在SpringApplication
類中。具體來說,SpringApplication
類的run
方法是這個過程的入口點。在這個方法中,Spring Boot會通過調用createApplicationContext
方法來創建應用程序上下文。
下面是createApplicationContext
方法的源代碼:
protected ConfigurableApplicationContext createApplicationContext() { Class<?> contextClass = this.applicationContextClass; if (contextClass == null) { try { switch (this.webApplicationType) { case SERVLET: contextClass = Class.forName(DEFAULT_SERVLET_WEB_CONTEXT_CLASS); break; case REACTIVE: contextClass = Class.forName(DEFAULT_REACTIVE_WEB_CONTEXT_CLASS); break; default: contextClass = Class.forName(DEFAULT_CONTEXT_CLASS); } } catch (ClassNotFoundException ex) { throw new IllegalStateException( "Unable to create a default ApplicationContext, " + "please specify an ApplicationContextClass", ex); } } return (ConfigurableApplicationContext) BeanUtils.instantiateClass(contextClass); }
在這個方法中,SpringBoot 會根據應用程序類型(Servlet或Reactive)選擇合適的上下文類。然后,它會使用 Java 反射機制來實例化這個類并返回一個可配置的應用程序上下文對象。
在上一步中,SpringBoot創建了應用程序上下文。在這一步中,SpringBoot會掃描應用程序中的所有組件并將它們注冊到應用程序上下文中。
這個步驟的源代碼在SpringApplication
類中的scan
方法中。具體來說,在這個方法中,SpringBoot 會創建一個SpringBootBeanDefinitionScanner
對象,并使用它來掃描應用程序中的所有組件。
下面是scan
方法的源代碼:
private void scan(String... basePackages) { if (ObjectUtils.isEmpty(basePackages)) { return; } ClassPathScanningCandidateComponentProvider scanner = new ClassPathScanningCandidateComponentProvider( this.includeFilters, this.excludeFilters, this.resourceLoader); scanner.setResourceLoader(this.resourceLoader); scanner.setEnvironment(this.environment); scanner.setIncludeAnnotationConfig(this.useAnnotatedConfig); scanner.addExcludeFilter(new AbstractTypeHierarchyTraversingFilter(false, false) { @Override protected boolean matchClassName(String className) { return getExcludeClassNames().contains(className); } }); for (String basePackage : basePackages) { scanner.findCandidateComponents(basePackage).forEach(this.componentDefinitions::add); } }
在這個方法中,SpringBoot 會創建一個ClassPathScanningCandidateComponentProvider
對象,并使用它來掃描應用程序中的所有組件。這個對象會掃描指定包路徑下的所有類,并將它們轉換為 Spring 的 Bean 定義。這些 Bean 定義將被注冊到應用程序上下文中。
在上一步中,SpringBoot將應用程序中的所有組件注冊到應用程序上下文中。在這一步中,SpringBoot將自動配置應用程序環境,包括配置數據源、事務管理器、JPA等。
這個步驟的源代碼在SpringApplication
類中的configureEnvironment
方法中。在這個方法中,Spring Boot會創建一個SpringApplicationRunListeners
對象,并使用它來配置應用程序環境。
下面是configureEnvironment
方法的源代碼:
private void configureEnvironment(ConfigurableEnvironment environment, String[] args) { if (this.addCommandLineProperties) { ApplicationArguments applicationArguments = new DefaultApplicationArguments(args); environment.getPropertySources().addLast(new CommandLinePropertySource(applicationArguments)); } this.listeners.environmentPrepared(environment); if (this.logStartupInfo) { this.logStartupInfo(environment); } ConfigurationPropertySources.attach(environment); Binder.get(environment).bind(ConfigurationPropertyName.EMPTY, Bindable.ofInstance(this.sources)); if (!this.isCustomEnvironment) { EnvironmentConverter.configureEnvironment(environment, this.deduceEnvironmentClass()); } this.listeners.environmentPrepared(environment); }
在這個方法中,SpringBoot 會創建一個ApplicationArguments
對象,并將其轉換為一個命令行屬性源。然后,它會調用listeners
中的environmentPrepared
方法來通知應用程序環境已經準備好了。隨后,SpringBoot 會綁定屬性源到應用程序環境中,并調用listeners
中的environmentPrepared
方法來通知應用程序環境已經準備好了。
在上一步中,SpringBoot 將應用程序環境自動配置完成。在這一步中,SpringBoot 將啟動嵌入式Web服務器,以便應用程序能夠提供 Web 服務。
這個步驟的源代碼在SpringApplication
類中的run
方法中。具體來說,在這個方法中,SpringBoot 會根據應用程序類型(Servlet或Reactive)選擇合適的嵌入式Web服務器,并使用它來啟動應用程序。
下面是run
方法的源代碼:
public ConfigurableApplicationContext run(String... args) { StopWatch stopWatch = new StopWatch(); stopWatch.start(); ConfigurableApplicationContext context = null; Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>(); configureHeadlessProperty(); SpringApplicationRunListeners listeners = getRunListeners(args); listeners.starting(); try { ApplicationArguments applicationArguments = new DefaultApplicationArguments(args); ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments); configureIgnoreBeanInfo(environment); Banner printedBanner = printBanner(environment); context = createApplicationContext(); exceptionReporters = getSpringFactoriesInstances( SpringBootExceptionReporter.class, new Class[] { ConfigurableApplicationContext.class }, context); prepareContext(context, environment, listeners, applicationArguments, printedBanner); refreshContext(context); afterRefresh(context, applicationArguments); stopWatch.stop(); if (this.logStartupInfo) { new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), stopWatch); } listeners.started(context); callRunners(context, applicationArguments); } catch (Throwable ex) { handleRunFailure(context, ex, exceptionReporters, listeners); throw new IllegalStateException(ex); } try { listeners.running(context); } catch (Throwable ex) { handleRunFailure(context, ex, exceptionReporters, null); throw new IllegalStateException(ex); } return context; }
在這個方法中,SpringBoot 會使用一個StopWatch
對象來計算應用程序啟動時間。然后,它會調用listeners
中的starting
方法來通知應用程序即將啟動。接著,SpringBoot 會準備應用程序環境,并使用它來創建應用程序上下文。隨后,SpringBoot 會調用listeners
中的started
方法來通知應用程序已經啟動。最后,SpringBoot 會調用callRunners
方法來運行所有的CommandLineRunner
和ApplicationRunner
組件。
到此,相信大家對“SpringBoot啟動流程是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。