范文健康探索娱乐情感热点
热点动态
科技财经
情感日志
励志美文
娱乐时尚
游戏搞笑
探索旅游
历史星座
健康养生
美丽育儿
范文作文
教案论文

源码探秘Tomcat在SpringBoot中是如何启动的?

  前言[1]  从 Main 方法说起[2]  走进 Tomcat 内部[3]  总结[4]  前言
  我们知道 SpringBoot 给我们带来了一个全新的开发体验,我们可以直接把 web 程序达成 jar 包,直接启动,这就得益于 SpringBoot 内置了容器,可以直接启动,本文将以 Tomcat 为例,来看看 SpringBoot 是如何启动 Tomcat 的,同时也将展开学习下 Tomcat 的源码,了解 Tomcat 的设计。  从 Main 方法说起
  用过 SpringBoot 的人都知道,首先要写一个 main 方法来启动  @SpringBootApplication publicclass TomcatdebugApplication {      public static void main(String[] args) {         SpringApplication.run(TomcatdebugApplication.class, args);     }  }
  我们直接点击 run 方法的源码,跟踪下来,发下最终的 run 方法是调用 ConfigurableApplicationContext 方法,源码如下:  public ConfigurableApplicationContext run(String... args) {     StopWatch stopWatch = new StopWatch();     stopWatch.start();     ConfigurableApplicationContext context = null;     CollectionexceptionReporters = new ArrayList<>();     //设置系统属性『java.awt.headless』,为true则启用headless模式支持     configureHeadlessProperty();     //通过*SpringFactoriesLoader*检索*META-INF/spring.factories*,        //找到声明的所有SpringApplicationRunListener的实现类并将其实例化,        //之后逐个调用其started()方法,广播SpringBoot要开始执行了     SpringApplicationRunListeners listeners = getRunListeners(args);     //发布应用开始启动事件     listeners.starting();     try {     //初始化参数       ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);       //创建并配置当前SpringBoot应用将要使用的Environment(包括配置要使用的PropertySource以及Profile),         //并遍历调用所有的SpringApplicationRunListener的environmentPrepared()方法,广播Environment准备完毕。       ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments);       configureIgnoreBeanInfo(environment);       //打印banner       Banner printedBanner = printBanner(environment);       //创建应用上下文       context = createApplicationContext();       //通过*SpringFactoriesLoader*检索*META-INF/spring.factories*,获取并实例化异常分析器       exceptionReporters = getSpringFactoriesInstances(SpringBootExceptionReporter.class,           new Class[] { ConfigurableApplicationContext.class }, context);       //为ApplicationContext加载environment,之后逐个执行ApplicationContextInitializer的initialize()方法来进一步封装ApplicationContext,         //并调用所有的SpringApplicationRunListener的contextPrepared()方法,【EventPublishingRunListener只提供了一个空的contextPrepared()方法】,         //之后初始化IoC容器,并调用SpringApplicationRunListener的contextLoaded()方法,广播ApplicationContext的IoC加载完成,         //这里就包括通过**@EnableAutoConfiguration**导入的各种自动配置类。       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);       //遍历所有注册的ApplicationRunner和CommandLineRunner,并执行其run()方法。         //我们可以实现自己的ApplicationRunner或者CommandLineRunner,来对SpringBoot的启动过程进行扩展。       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;   }
  其实这个方法我们可以简单的总结下步骤为 > 1. 配置属性 > 2. 获取监听器,发布应用开始启动事件 > 3. 初始化输入参数 > 4. 配置环境,输出 banner > 5. 创建上下文 > 6. 预处理上下文 > 7. 刷新上下文 > 8. 再刷新上下文 > 9. 发布应用已经启动事件 > 10. 发布应用启动完成事件
  其实上面这段代码,如果只要分析 tomcat 内容的话,只需要关注两个内容即可,上下文是如何创建的,上下文是如何刷新的,分别对应的方法就是 createApplicationContext() 和 refreshContext(context),接下来我们来看看这两个方法做了什么。  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) {         thrownew IllegalStateException(             "Unable create a default ApplicationContext, " + "please specify an ApplicationContextClass",             ex);       }     }     return (ConfigurableApplicationContext) BeanUtils.instantiateClass(contextClass);   }
  这里就是根据我们的 webApplicationType 来判断创建哪种类型的 Servlet,代码中分别对应着 Web 类型(SERVLET),响应式 Web 类型(REACTIVE),非 Web 类型(default),我们建立的是 Web 类型,所以肯定实例化 DEFAULT_SERVLET_WEB_CONTEXT_CLASS 指定的类,也就是 AnnotationConfigServletWebServerApplicationContext 类
  我们来用图来说明下这个类的关系
  通过这个类图我们可以知道,这个类继承的是 ServletWebServerApplicationContext,这就是我们真正的主角,而这个类最终是继承了 AbstractApplicationContext,了解完创建上下文的情况后,我们再来看看刷新上下文,相关代码如下:  //类:SpringApplication.java  private void refreshContext(ConfigurableApplicationContext context) {     //直接调用刷新方法     refresh(context);     if (this.registerShutdownHook) {       try {         context.registerShutdownHook();       }       catch (AccessControlException ex) {         // Not allowed in some environments.       }     }   } //类:SpringApplication.java  protected void refresh(ApplicationContext applicationContext) {     Assert.isInstanceOf(AbstractApplicationContext.class, applicationContext);     ((AbstractApplicationContext) applicationContext).refresh();   }
  这里还是直接传递调用本类的 refresh(context)方法,最后是强转成父类 AbstractApplicationContext 调用其 refresh()方法,该代码如下:  // 类:AbstractApplicationContext public void refresh() throws BeansException, IllegalStateException {     synchronized (this.startupShutdownMonitor) {       // Prepare this context for refreshing.       prepareRefresh();        // Tell the subclass to refresh the internal bean factory.       ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();        // Prepare the bean factory for use in this context.       prepareBeanFactory(beanFactory);        try {         // Allows post-processing of the bean factory in context subclasses.         postProcessBeanFactory(beanFactory);          // Invoke factory processors registered as beans in the context.         invokeBeanFactoryPostProcessors(beanFactory);          // Register bean processors that intercept bean creation.         registerBeanPostProcessors(beanFactory);          // Initialize message source for this context.         initMessageSource();          // Initialize event multicaster for this context.         initApplicationEventMulticaster();          // Initialize other special beans in specific context subclasses.这里的意思就是调用各个子类的onRefresh()         onRefresh();          // Check for listener beans and register them.         registerListeners();          // Instantiate all remaining (non-lazy-init) singletons.         finishBeanFactoryInitialization(beanFactory);          // Last step: publish corresponding event.         finishRefresh();       }        catch (BeansException ex) {         if (logger.isWarnEnabled()) {           logger.warn("Exception encountered during context initialization - " +               "cancelling refresh attempt: " + ex);         }          // Destroy already created singletons to avoid dangling resources.         destroyBeans();          // Reset "active" flag.         cancelRefresh(ex);          // Propagate exception to caller.         throw ex;       }        finally {         // Reset common introspection caches in Spring"s core, since we         // might not ever need metadata for singleton beans anymore...         resetCommonCaches();       }     }   }
  这里我们看到 onRefresh()方法是调用其子类的实现,根据我们上文的分析,我们这里的子类是 ServletWebServerApplicationContext。  //类:ServletWebServerApplicationContext protected void onRefresh() {     super.onRefresh();     try {       createWebServer();     }     catch (Throwable ex) {       thrownew ApplicationContextException("Unable to start web server", ex);     }   }  private void createWebServer() {     WebServer webServer = this.webServer;     ServletContext servletContext = getServletContext();     if (webServer == null && servletContext == null) {       ServletWebServerFactory factory = getWebServerFactory();       this.webServer = factory.getWebServer(getSelfInitializer());     }     elseif (servletContext != null) {       try {         getSelfInitializer().onStartup(servletContext);       }       catch (ServletException ex) {         thrownew ApplicationContextException("Cannot initialize servlet context", ex);       }     }     initPropertySources();   }
  到这里,其实庐山真面目已经出来了,createWebServer()就是启动 web 服务,但是还没有真正启动 Tomcat,既然 webServer 是通过 ServletWebServerFactory 来获取的,我们就来看看这个工厂的真面目。
  走进 Tomcat 内部
  根据上图我们发现,工厂类是一个接口,各个具体服务的实现是由各个子类来实现的
  所以我们就去看看 TomcatServletWebServerFactory.getWebServer()的实现。  @Override   public WebServer getWebServer(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);     configureEngine(tomcat.getEngine());     for (Connector additionalConnector : this.additionalTomcatConnectors) {       tomcat.getService().addConnector(additionalConnector);     }     prepareContext(tomcat.getHost(), initializers);     return getTomcatWebServer(tomcat);   }
  根据上面的代码,我们发现其主要做了两件事情,第一件事就是把 Connnctor(我们称之为连接器)对象添加到 Tomcat 中,第二件事就是 configureEngine,这连接器我们勉强能理解(不理解后面会述说),那这个 Engine 是什么呢?
  我们查看 tomcat.getEngine()的源码:  public Engine getEngine() {         Service service = getServer().findServices()[0];         if (service.getContainer() != null) {             return service.getContainer();         }         Engine engine = new StandardEngine();         engine.setName( "Tomcat" );         engine.setDefaultHost(hostname);         engine.setRealm(createDefaultRealm());         service.setContainer(engine);         return engine;     }
  根据上面的源码,我们发现,原来这个 Engine 是容器,我们继续跟踪源码,找到 Container 接口
  上图中,我们看到了 4 个子接口,分别是 Engine,Host,Context,Wrapper。我们从继承关系上可以知道他们都是容器
  那么他们到底有啥区别呢?我看看他们的注释是怎么说的。  /**  If used, an Engine is always the top level Container in a Catalina  * hierarchy. Therefore, the implementation"s setParent()  method  * should throw IllegalArgumentException .  *  * @author Craig R. McClanahan  */ publicinterface Engine extends Container {     //省略代码 } /**  *  * The parent Container attached to a Host is generally an Engine, but may  * be some other implementation, or may be omitted if it is not necessary.  *  * The child containers attached to a Host are generally implementations  * of Context (representing an inpidual servlet context).  *  * @author Craig R. McClanahan  */ public interface Host extends Container { //省略代码  } /***  * The parent Container attached to a Context is generally a Host, but may  * be some other implementation, or may be omitted if it is not necessary.  *  * The child containers attached to a Context are generally implementations  * of Wrapper (representing inpidual servlet definitions).  *  *  * @author Craig R. McClanahan  */ public interface Context extends Container, ContextBind {     //省略代码 } /**  * The parent Container attached to a Wrapper will generally be an  * implementation of Context, representing the servlet context (and  * therefore the web application) within which this servlet executes.  *   * Child Containers are not allowed on Wrapper implementations, so the  * addChild()  method should throw an  * IllegalArgumentException .  *  * @author Craig R. McClanahan  */ publicinterface Wrapper extends Container {      //省略代码 }  上面的注释翻译过来就是,Engine 是最高级别的容器,其子容器是 Host,Host 的子容器是 Context,Wrapper 是 Context 的子容器,所以这 4 个容器的关系就是父子关系,也就是 Engine>Host>Context>Wrapper。  我们再看看 Tomcat 类的源码://部分源码,其余部分省略。 publicclass Tomcat { //设置连接器      public void setConnector(Connector connector) {         Service service = getService();         boolean found = false;         for (Connector serviceConnector : service.findConnectors()) {             if (connector == serviceConnector) {                 found = true;             }         }         if (!found) {             service.addConnector(connector);         }     }     //获取service        public Service getService() {         return getServer().findServices()[0];     }     //设置Host容器      public void setHost(Host host) {         Engine engine = getEngine();         boolean found = false;         for (Container engineHost : engine.findChildren()) {             if (engineHost == host) {                 found = true;             }         }         if (!found) {             engine.addChild(host);         }     }     //获取Engine容器      public Engine getEngine() {         Service service = getServer().findServices()[0];         if (service.getContainer() != null) {             return service.getContainer();         }         Engine engine = new StandardEngine();         engine.setName( "Tomcat" );         engine.setDefaultHost(hostname);         engine.setRealm(createDefaultRealm());         service.setContainer(engine);         return engine;     }     //获取server        public Server getServer() {          if (server != null) {             return server;         }          System.setProperty("catalina.useNaming", "false");          server = new StandardServer();          initBaseDir();          // Set configuration source         ConfigFileLoader.setSource(new CatalinaBaseConfigurationSource(new File(basedir), null));          server.setPort( -1 );          Service service = new StandardService();         service.setName("Tomcat");         server.addService(service);         return server;     }      //添加Context容器       public Context addContext(Host host, String contextPath, String contextName,             String dir) {         silence(host, contextName);         Context ctx = createContext(host, contextPath);         ctx.setName(contextName);         ctx.setPath(contextPath);         ctx.setDocBase(dir);         ctx.addLifecycleListener(new FixContextListener());          if (host == null) {             getHost().addChild(ctx);         } else {             host.addChild(ctx);         }      //添加Wrapper容器          public static Wrapper addServlet(Context ctx,                                       String servletName,                                       Servlet servlet) {         // will do class for name and set init params         Wrapper sw = new ExistingStandardWrapper(servlet);         sw.setName(servletName);         ctx.addChild(sw);          return sw;     }  } 阅读 Tomcat 的 getServer()我们可以知道,Tomcat 的最顶层是 Server,Server 就是 Tomcat 的实例,一个 Tomcat 一个 Server  通过 getEngine()我们可以了解到 Server 下面是 Service,而且是多个,一个 Service 代表我们部署的一个应用,而且我们还可以知道,Engine 容器,一个 service 只有一个;根据父子关系,我们看 setHost()源码可以知道,host 容器有多个  同理,我们发现 addContext()源码下,Context 也是多个;addServlet()表明 Wrapper 容器也是多个,而且这段代码也暗示了,其实 Wrapper 和 Servlet 是一层意思。另外我们根据 setConnector 源码可以知道,连接器(Connector)是设置在 service 下的,而且是可以设置多个连接器(Connector)。根据上面分析,我们可以小结下:Tomcat 主要包含了 2 个核心组件,连接器(Connector)和容器(Container),用图表示如下:一个 Tomcat 是一个 Server,一个 Server 下有多个 service,也就是我们部署的多个应用,一个应用下有多个连接器(Connector)和一个容器(Container),容器下有多个子容器,关系用图表示如下:Engine 下有多个 Host 子容器,Host 下有多个 Context 子容器,Context 下有多个 Wrapper 子容器。总结SpringBoot 的启动是通过 new SpringApplication()实例来启动的,启动过程主要做如下几件事情:   1. 配置属性 2. 获取监听器,发布应用开始启动事件 3. 初始化输入参数 4. 配置环境,输出 banner 5. 创建上下文 6. 预处理上下文 7. 刷新上下文 8. 再刷新上下文 9. 发布应用已经启动事件 10. 发布应用启动完成事件而启动 Tomcat 就是在第 7 步中"刷新上下文";Tomcat 的启动主要是初始化 2 个核心组件,连接器(Connector)和容器(Container),一个 Tomcat 实例就是一个 Server,一个 Server 包含多个 Service,也就是多个应用程序,每个 Service 包含多个连接器(Connetor)和一个容器(Container),而容器下又有多个子容器,按照父子关系分别为:Engine,Host,Context,Wrapper,其中除了 Engine 外,其余的容器都是可以有多个。END 作者:木木匠来源:https://my.oschina.net/luozhou/blog/3088908 本文版权归作者所有

关于英雄联盟即将发布的新英雄zeri,你可能需要了解的一些冷知识今天凌晨,拳头在北美PBE测试服悄悄上线了2022年第一位新英雄zeri的一些信息,外网还po出了其中她的一张原画,目前关于这个英雄的技能,我们还不得而知,但从最近英雄联盟官方更新金铲铲之战S6顶级议员2。0!学院塔利斯一锤1800Hello,大家好!我是兔子,今天继续为大家分享娱乐阵容呀!今天娱乐阵容是塔利斯议员2。0!学院塔利斯,之前就一直有小伙伴在后台留言说学院议员非常猛,兔子平时排位为大家测试阵容的时三国杀只有阴间才能打败阴间,何人能从二鬼拍门下全身而退?大家好,这里是你们的老朋友踏浪!要说斗地主当中,最让人想跑路的农民组合,那一定是界徐盛神甘宁了。这个组合,也被玩家们起了个二鬼拍门的雅称。这两个武将组合在一起,等于说强行拉出了两个魂师对决乱速型魂师盘点!掌握了行动条就相当于掌握了胜利大家好,我是正在头脑发热的何二维一。今天一位水友给维一说能不能盘点下目前游戏中的乱速型魂师,恰好维一也正有此意因此今天的文章我们就来针对目前游戏中的共计14位拥有对行动条有部分技能怒火一刀玩法攻略玩法攻略1这里面的任务比较简单,按照主线任务去做就行,比如说要打转生材料就去狂徒之家要打元婴的材料就去万恶之源,还有一个建议就是,大家最好别玩战士,不仅氪金还发育的非常慢,打怪都打一切为了游戏体验三七互娱与阿里云这对搭档的新玩法作为国内的老牌厂商,三七互娱是国内最早开展全球化业务的游戏公司之一。早在2012年,三七互娱就确立了出海战略,成立了37GAMES。2016年,三七互娱推出了第一款自研手游,2012021年STEAM大奖获奖名单生化危机8荣获年度最佳游戏2022。01。05就在昨日,steam社区响应玩家呼声,宣布了2021年度获奖名单。这也是steam的第6界年度大奖,本届的年度最佳游戏由ResidentEvilVillage中原神与幻塔游戏性对比很明显,摸鱼着玩对幻塔是极为不利的,但对原神倒是无所谓。可能是因为原神我已经玩了很久了,该刷的东西都刷完了,虽然大部分还没拉满,主力c的技能才8级,武器也就80级,基本全是靠活动给亲女儿地位不保炉石传说JJC续航牌点评(法师篇)大家好,我是中二!炉石传说的盘点竞技场续航牌系列已经做了几天,今天为大家带来设计师的亲女儿法师的续航牌点评。海的女儿是真的飒法师续航牌点评魔杖窃贼T0,多多益善,能抓就抓!法师JJ英雄联盟易大师无极剑圣这个称号的由来很多人认为无极剑圣这个称号,是剑圣易的荣耀和实力,实际上只是因为这个称号无人继承,在艾欧尼亚中部省份巴鲁鄂有座名为无极的村落,易从小憧憬那些行侠易举的剑客,于是白天与母亲练剑,夜晚真三国无双8帝国试玩评测光荣,且卖且珍惜吧真三国无双系列作为PS时代三国无双的续作,于2001年登陆PS2平台以来,以其独特的无双玩法和新奇的角色自定义等内容,一直广受玩家喜爱,是光荣旗下具有传奇性的IP之一。但是由于种种
王者荣耀小儿科?网友是时候见识真正的技术了我是一个非常喜欢团队竞技手游的玩家,对王者荣耀这个团队竞技手游真的是爱不释手。它不断推动着团队竞技手游的发展,是不可多得的好游戏。王者荣耀在一定意义上对团队竞技手游进行了定义,将团游戏角色如何有血有肉?LOL打造双城之战,幻塔为拟态设专属剧情相信每位游戏玩家都有这样的体验,当真正沉浸到游戏中时,游戏里的世界与角色就是真实存在的,而非只是冰冷的数据。当然,这种真实感也离不开游戏项目组对角色的塑造,怎么让虚拟的她们有血有肉泰拉瑞亚(新手篇)打开泰拉端亚,随机创建一个人物和地图,就可以进入游戏了。创建一个人物,可以自定义外观。可选择地图大小,难度,生态。初始物品是一把铜短剑,一把铜搞和一把铜斧。最初始的NPC是向导,他原神分享下自己神罗糖心雷神国家队打这两期深渊的心得作者NGAhohohohao虽然是连打,但是122其实是重开了两次的,神里池入坑万叶用6命砂糖替的,队里只有雷神用的五星武器天空,因为抽卡抽的不多,四星的精炼度也很低神里精一天目,传世群英新版本传奇传世游戏爆率高元神融合合击版本新手攻略传世群英版是一款大型的传奇动作冒险手游,无比精彩刺激的战斗玩法,每一个职业都拥有属于自己的特殊属性和技能,玩家在这里可以随意发挥的你们的实力,更有超多福利等着你们来领取。玩家在这里Steam模拟经营房产达人开启特惠促销!支持简中由游戏开发商Empyrean制作FrozenDistrict发行的模拟经营游戏房产达人(HouseFlipper)现已在Steam开启特价促销,游戏原价70元,70折扣后价格仅为2守望先锋推迟冬季仙境2021活动暴雪证实,英雄射击游戏守望先锋中的年度冬季仙境活动将比预期晚于今年开始。每年,守望先锋粉丝都有许多特别的季节性活动值得期待,包括10月流行的万圣节恐怖活动和每年5月的周年纪念活动。部落与弯刀全新好感度系统上线,目前哪些英雄最强势?在部落与弯刀的新版本里,所有英雄都被重做,现在的英雄定位无疑更加明确。但在之前版本中强势的英雄到了正式版里还是很强,今天就来给大家推荐一些强力的英雄和获取方法。由于官方新调整了好感新英雄无敌3第一届比赛新英雄无敌3霸主再临第一届菜鸟杯全兵PK赛规则说明1赛前设置版本新英雄无敌3霸主再临最新4。2版本地图NH3种族争霸赛平台游戏自带联网系统(优先)或游侠网设置一律采用默认设置难度2小笨蛋北北堪称中单万花筒,5英雄上国服,不过他也有短板不知不觉中,王者荣耀的这个赛季已经到了尾声了,这个赛季可以说是一个打野的赛季,巅峰赛中霸榜的也几乎都是打野玩得好的主播,但凡事总有例外,也有一名主播用法师占据了巅峰榜前10,并且是盘点10款耐玩的Steam沙盒游戏,庞大技能树让玩家自由发展职业相信只要是游戏爱好者,都或多或少接触过沙盒类的游戏题材,这类游戏的核心就在于高度的开放和自由,因此玩起来相当带感。接下来就来为大家盘点10款好玩的沙盒游戏吧。第一款为辐射4,游戏的