最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

SpringBoot中如何啟動Tomcat流程

 更新時間:2019年05月10日 12:04:50   作者:胡一省  
這篇文章主要介紹了SpringBoot中如何啟動Tomcat流程,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

前面在一篇文章中介紹了 Spring 中的一些重要的 context。有一些在此文中提到的 context,可以參看上篇文章。

SpringBoot 項目之所以部署簡單,其很大一部分原因就是因為不用自己折騰 Tomcat 相關配置,因為其本身內(nèi)置了各種 Servlet 容器。一直好奇: SpringBoot 是怎么通過簡單運行一個 main 函數(shù),就能將容器啟動起來,并將自身部署到其上 。此文想梳理清楚這個問題。

我們從SpringBoot的啟動入口中分析:

Context 創(chuàng)建

// Create, load, refresh and run the ApplicationContext
context = createApplicationContext();

在SpringBoot 的 run 方法中,我們發(fā)現(xiàn)其中很重要的一步就是上面的一行代碼。注釋也寫的很清楚:

創(chuàng)建、加載、刷新、運行 ApplicationContext。

繼續(xù)往里面走。

protected ConfigurableApplicationContext createApplicationContext() {
  Class<?> contextClass = this.applicationContextClass;
  if (contextClass == null) {
    try {
     contextClass = Class.forName(this.webEnvironment
        ? DEFAULT_WEB_CONTEXT_CLASS : DEFAULT_CONTEXT_CLASS);
    }
    catch (ClassNotFoundException ex) {
     throw new IllegalStateException(
        "Unable create a default ApplicationContext, "
           + "please specify an ApplicationContextClass",
        ex);
   }
  }
  return (ConfigurableApplicationContext) BeanUtils.instantiate(contextClass);
}
 

邏輯很清楚:

先找到 context 類,然后利用工具方法將其實例化。

其中 第5行 有個判斷:如果是 web 環(huán)境,則加載 DEFAULT _WEB_CONTEXT_CLASS類。參看成員變量定義,其類名為:

AnnotationConfigEmbeddedWebApplicationContext

此類的繼承結構如圖:

直接繼承 GenericWebApplicationContext。關于該類前文已有介紹,只要記得它是專門為 web application提供context 的就好。

refresh

在經(jīng)歷過 Context 的創(chuàng)建以及Context的一些列初始化之后,調(diào)用 Context 的 refresh 方法,真正的好戲才開始上演。

從前面我們可以看到AnnotationConfigEmbeddedWebApplicationContext的繼承結構,調(diào)用該類的refresh方法,最終會由其直接父類:EmbeddedWebApplicationContext 來執(zhí)行。

@Override
 protected void onRefresh() {
  super.onRefresh();
  try {
    createEmbeddedServletContainer();
  }
  catch (Throwable ex) {
    throw new ApplicationContextException("Unable to start embedded container",
       ex);
  }
}

我們重點看第5行。

private void createEmbeddedServletContainer() {
  EmbeddedServletContainer localContainer = this.embeddedServletContainer;
  ServletContext localServletContext = getServletContext();
  if (localContainer == null && localServletContext == null) {
    EmbeddedServletContainerFactory containerFactory = getEmbeddedServletContainerFactory();
    this.embeddedServletContainer = containerFactory
       .getEmbeddedServletContainer(getSelfInitializer());
  }
  else if (localServletContext != null) {
   try {
     getSelfInitializer().onStartup(localServletContext);
   }
   catch (ServletException ex) {
     throw new ApplicationContextException("Cannot initialize servlet context",
        ex);
   }
  }
  initPropertySources();
}

代碼第5行,獲取到了一個EmbeddedServletContainerFactory,顧名思義,其作用就是為了下一步創(chuàng)建一個嵌入式的 servlet 容器:EmbeddedServletContainer。

public interface EmbeddedServletContainerFactory {
 
  /**
   * 創(chuàng)建一個配置完全的但是目前還處于“pause”狀態(tài)的實例.
   * 只有其 start 方法被調(diào)用后,Client 才能與其建立連接。
   */
  EmbeddedServletContainer getEmbeddedServletContainer(
     ServletContextInitializer... initializers);
 
}

第6、7行,在 containerFactory 獲取EmbeddedServletContainer的時候,參數(shù)為 getSelfInitializer 函數(shù)的執(zhí)行結果。暫時不管其內(nèi)部機制如何,只要知道它會返回一個 ServletContextInitializer 用于容器初始化的對象即可,我們繼續(xù)往下看。

由于 EmbeddedServletContainerFactory 是個抽象工廠,不同的容器有不同的實現(xiàn),因為SpringBoot默認使用Tomcat,所以就以 Tomcat 的工廠實現(xiàn)類 TomcatEmbeddedServletContainerFactory 進行分析:

 @Override
 public EmbeddedServletContainer getEmbeddedServletContainer(
    ServletContextInitializer... initializers) {
  Tomcat tomcat = new Tomcat();
  File baseDir = (this.baseDirectory != null ? this.baseDirectory
     : createTempDir("tomcat"));
  tomcat.setBaseDir(baseDir.getAbsolutePath());
  Connector connector = new Connector(this.protocol);
  tomcat.getService().addConnector(connector);
  customizeConnector(connector);
  tomcat.setConnector(connector);
  tomcat.getHost().setAutoDeploy(false);
  tomcat.getEngine().setBackgroundProcessorDelay(-);
  for (Connector additionalConnector : this.additionalTomcatConnectors) {
   tomcat.getService().addConnector(additionalConnector);
  }
  prepareContext(tomcat.getHost(), initializers);
  return getTomcatEmbeddedServletContainer(tomcat);
}

從第8行一直到第16行完成了 tomcat 的 connector 的添加。tomcat 中的 connector 主要負責用來處理 http 請求,具體原理可以參看 Tomcat 的源碼,此處暫且不提。

第17行的 方法有點長,重點看其中的幾行:

 if (isRegisterDefaultServlet()) {
  addDefaultServlet(context);
 }
 if (isRegisterJspServlet() && ClassUtils.isPresent(getJspServletClassName(),
    getClass().getClassLoader())) {
  addJspServlet(context);
  addJasperInitializer(context);
  context.addLifecycleListener(new StoreMergedWebXmlListener());
 }
ServletContextInitializer[] initializersToUse = mergeInitializers(initializers);
configureContext(context, initializersToUse);

前面兩個分支判斷添加了默認的 servlet類和與 jsp 相關的 servlet 類。

對所有的 ServletContextInitializer 進行合并后,利用合并后的初始化類對 context 進行配置。

第 18 行,順著方法一直往下走,開始正式啟動 Tomcat。

private synchronized void initialize() throws EmbeddedServletContainerException {
  TomcatEmbeddedServletContainer.logger
     .info("Tomcat initialized with port(s): " + getPortsDescription(false));
  try {
    addInstanceIdToEngineName();
 
    // Remove service connectors to that protocol binding doesn't happen yet
    removeServiceConnectors();
 
   // Start the server to trigger initialization listeners
   this.tomcat.start();

   // We can re-throw failure exception directly in the main thread
   rethrowDeferredStartupExceptions();

   // Unlike Jetty, all Tomcat threads are daemon threads. We create a
   // blocking non-daemon to stop immediate shutdown
   startDaemonAwaitThread();
  }
  catch (Exception ex) {
   throw new EmbeddedServletContainerException("Unable to start embedded Tomcat",
      ex);
  }
}

第11行正式啟動 tomcat。

現(xiàn)在我們回過來看看之前的那個 getSelfInitializer 方法:

private ServletContextInitializer getSelfInitializer() {
  return new ServletContextInitializer() {
   @Override
   public void onStartup(ServletContext servletContext) throws ServletException {
     selfInitialize(servletContext);
   }
  };
}
private void selfInitialize(ServletContext servletContext) throws ServletException {
  prepareEmbeddedWebApplicationContext(servletContext);
  ConfigurableListableBeanFactory beanFactory = getBeanFactory();
  ExistingWebApplicationScopes existingScopes = new ExistingWebApplicationScopes(
     beanFactory);
  WebApplicationContextUtils.registerWebApplicationScopes(beanFactory,
     getServletContext());
  existingScopes.restore();
  WebApplicationContextUtils.registerEnvironmentBeans(beanFactory,
     getServletContext());
  for (ServletContextInitializer beans : getServletContextInitializerBeans()) {
   beans.onStartup(servletContext);
  }
}

在第2行的prepareEmbeddedWebApplicationContext方法中主要是將 EmbeddedWebApplicationContext 設置為rootContext。

第4行允許用戶存儲自定義的 scope。

第6行主要是用來將web專用的scope注冊到BeanFactory中,比如("request", "session", "globalSession", "application")。

第9行注冊web專用的environment bean(比如 ("contextParameters", "contextAttributes"))到給定的 BeanFactory 中。

第11和12行,比較重要,主要用來配置 servlet、filters、listeners、context-param和一些初始化時的必要屬性。

以其一個實現(xiàn)類ServletContextInitializer試舉一例:

@Override
 public void onStartup(ServletContext servletContext) throws ServletException {
  Assert.notNull(this.servlet, "Servlet must not be null");
  String name = getServletName();
  if (!isEnabled()) {
    logger.info("Servlet " + name + " was not registered (disabled)");
    return;
  }
  logger.info("Mapping servlet: '" + name + "' to " + this.urlMappings);
  Dynamic added = servletContext.addServlet(name, this.servlet);
  if (added == null) {
   logger.info("Servlet " + name + " was not registered "
      + "(possibly already registered?)");
   return;
  }
  configure(added);
}

可以看第9行的打印: 正是在這里實現(xiàn)了 servlet 到 URLMapping的映射。

總結

這篇文章從主干脈絡分析找到了為什么在SpringBoot中不用自己配置Tomcat,內(nèi)置的容器是怎么啟動起來的,順便在分析的過程中找到了我們常用的 urlMapping 映射 Servlet 的實現(xiàn)。

相關文章

  • 詳細聊聊Spring MVC重定向與轉發(fā)

    詳細聊聊Spring MVC重定向與轉發(fā)

    大家應該都知道請求重定向和請求轉發(fā)都是web開發(fā)中資源跳轉的方式,這篇文章主要給大家介紹了關于Spring MVC重定向與轉發(fā)的相關資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考下
    2021-09-09
  • Spring Mybatis 基本使用過程(推薦)

    Spring Mybatis 基本使用過程(推薦)

    Mybatis是一個半自動ORM(Object Relational Mapping)框架,它可以簡化數(shù)據(jù)庫編程,讓開發(fā)者更專注于SQL本身,本文給大家介紹Spring Mybatis 基本使用過程,感興趣的朋友跟隨小編一起看看吧
    2024-09-09
  • Java以struts2為例介紹如何實現(xiàn)圖片上傳

    Java以struts2為例介紹如何實現(xiàn)圖片上傳

    這篇文章主要介紹了Java struts2中如何實現(xiàn)圖片上傳的相關資料,需要的朋友可以參考下
    2015-11-11
  • commons io文件操作示例分享

    commons io文件操作示例分享

    這篇文章主要介紹了commons io文件操作示例分享,需要的朋友可以參考下
    2014-02-02
  • Spring實現(xiàn)源碼下載編譯及導入IDEA過程圖解

    Spring實現(xiàn)源碼下載編譯及導入IDEA過程圖解

    這篇文章主要介紹了Spring實現(xiàn)源碼下載編譯及導入IDEA,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-07-07
  • CompletableFuture并行處理List分批數(shù)據(jù)demo

    CompletableFuture并行處理List分批數(shù)據(jù)demo

    這篇文章主要介紹了CompletableFuture并行處理List分批數(shù)據(jù)實現(xiàn)實例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-11-11
  • Mybatis中強大的resultMap功能介紹

    Mybatis中強大的resultMap功能介紹

    這篇文章主要給大家介紹了關于Mybatis中強大的resultMap功能的相關資料,文中通過示例代碼介紹的非常詳細,對大家學習或者使用Mybatis具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧
    2019-06-06
  • 一篇看懂Java中的Unsafe類

    一篇看懂Java中的Unsafe類

    在閱讀AtomicInteger的源碼時,看到了這個類:sum.msic.Unsafe,之前從沒見過。所以花了點時間研究了下,下面這篇文章主要給大家介紹了關于Java中Unsafe類的相關資料,需要的朋友可以參考借鑒,下面來一起學習學習吧
    2018-05-05
  • 完美解決springboot項目出現(xiàn)”java: 錯誤: 無效的源發(fā)行版:17“問題(圖文詳解)

    完美解決springboot項目出現(xiàn)”java: 錯誤: 無效的源發(fā)行版:17“問題(圖文詳解)

    這篇文章主要介紹了完美解決springboot項目出現(xiàn)”java: 錯誤: 無效的源發(fā)行版:17“問題,本文通過圖文并茂的形式給大家介紹的非常詳細,需要的朋友可以參考下
    2023-04-04
  • JCrontab簡單入門實例詳解

    JCrontab簡單入門實例詳解

    這篇文章主要為大家詳細介紹了JCrontab簡單入門實例,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12

最新評論

慈溪市| 宣城市| 福海县| 白水县| 红桥区| 鄂尔多斯市| 攀枝花市| 吴旗县| 巴彦县| 鲜城| 汉阴县| 右玉县| 卓资县| 云霄县| 陵川县| 赫章县| 岳阳县| 闸北区| 两当县| 台湾省| 沧源| 林甸县| 台中县| 雷山县| 五常市| 红河县| 上栗县| 黄大仙区| 兴山县| 张掖市| 岑溪市| 视频| 德昌县| 延吉市| 兴业县| 武陟县| 垦利县| 同心县| 澄城县| 鄱阳县| 衡山县|