springboot 加载undertow容器过程

Springboot  UNDERTOW容器加载过程

SpringApplication 刷新content

从springboot 启动开始 SpringApplication.run

springboot 加载undertow容器过程_第1张图片

 

创建ApplicatonContext

springboot 加载undertow容器过程_第2张图片

 

 

springboot 加载undertow容器过程_第3张图片

调用AnnotationConfigServletWebServerApplicationContext

的refreshContext方法

springboot 加载undertow容器过程_第4张图片 

调用AnnotationConfigServletWebServerApplicationContext的refresh

方法

 springboot 加载undertow容器过程_第5张图片

 

AnnotationConfigServletWebServerApplicationContext

继承了ServletWebServerApplicationContext

ServletWebServerApplicationContext 继承了AbstractApplicationContext

 springboot 加载undertow容器过程_第6张图片

调用AbstractApplicationContext 的refresh方法

springboot 加载undertow容器过程_第7张图片 

ServletWebServerApplicationContext 他对父类AbstractApplicationContext的onRefresh

进行了重写

 springboot 加载undertow容器过程_第8张图片

 

调用ServletWebServerApplicationContext的createWebServer方法

 springboot 加载undertow容器过程_第9张图片

调用ServletWebServerApplicationContext的getWebServerFactory的方法来获取所有实现ServletWebServerFactory的bean,如果多个取第一个

springboot 加载undertow容器过程_第10张图片

 

 

获取了UndertowServletWebServerFactory对象这个对象在ServletWebServerFactoryConfiguration中初始化

springboot 加载undertow容器过程_第11张图片 

 

springboot 加载undertow容器过程_第12张图片 

 

创建manager,这个manager 很重要,用于创建undertow的httphandler

springboot 加载undertow容器过程_第13张图片 

 

 

初始化UndertowServletWebServer 实现WebServer,这个接口是web容器的核心接口

 

springboot 加载undertow容器过程_第14张图片 

 

SpringApplication 启动content

AnnotationConfigReactiveWebServerApplicationContext

springboot 加载undertow容器过程_第15张图片

Case REACTIVE 进行了初始化

AnnotationConfigReactiveWebServerApplicationContext继承了ReactiveWebServerApplicationContext 继承了GenericReactiveWebApplicationContext 在GenericReactiveWebApplicationContext refresh中调用了finishRefresh,ReactiveWebServerApplicationContext对finishRefresh进行了重写

springboot 加载undertow容器过程_第16张图片 

springboot 加载undertow容器过程_第17张图片 

调用了UndertowServletWebServer的start方法

springboot 加载undertow容器过程_第18张图片 

经过上面的过程发现一个问题,在undertow添加servlet 的时候只是添加了自己的defualtservlet,并没有添加DispatcherServle,那DispatcherServle是在什么时候添加进去的?

springboot中注册Servlet的两种方式:

第一种:

@WebServlet注解 ,但是DispatcherServlet并不是自定义的servlet,而是框架提供的servlet。

第二种

springboot 的ServletRegistrationBeanbean的方式来注册servlet

在DispatcherServletAutoConfiguration中注册了ServletRegistrationBean(dispatcherServlet)

 springboot 加载undertow容器过程_第19张图片

 

而dispatcherServlet在

 springboot 加载undertow容器过程_第20张图片

进行初始化

比如我们自定义一个servlet

@Bean

public ServletRegistrationBean  myServlet(){
    return new ServletRegistrationBean(new Servlet(){
        @Override
        public void init(ServletConfig config) throws ServletException {
        }
        @Override
        public ServletConfig getServletConfig() {
            return null;
        }
        @Override
        public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
        }
        @Override
        public String getServletInfo() {
            return null;
        }
        @Override
        public void destroy() {
        }

    },"/test");

}

总结 springboot 自定义web容器过程

  1. 偷一个web容器,符合servlet规范。
  2. 创建一个ServletWebServerFactory接口并实现类,且注入bean(主要职责是初始化自定义web容器的实例)
  3. 创建一个WebServer接口实现类(需要把springboot的handler添加到web容器的HttpHandler)

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(springboot 加载undertow容器过程)