关于java:4SpringBoot嵌入式Servlet容器

1、切换嵌入式Servlet容器

  • 默认反对的web服务器webServer:
 Tomcat, Jetty,  Undertow
 ServletWebServerApplicationContext 容器启动寻找ServletWebServerFactory 并疏导创立服务器
  • 切换服务器(能够切换四种)

    切换的形式:
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-web</artifactId>
              <exclusions>
                  <exclusion> 排除
                      <groupId>org.springframework.boot</groupId>
                      <artifactId>spring-boot-starter-tomcat</artifactId>
                  </exclusion>
              </exclusions>
          </dependency>
          <dependency>  导入
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-undertow</artifactId>
          </dependency>
              
              
    2022-07-17 19:34:02.650  INFO 6808 --- [  restartedMain] o.s.b.w.e.undertow.UndertowWebServer     : Undertow started on port(s) 8080 (http)

原理

  • SpringBoot利用启动发现以后是Web利用。因为导了web场景包,它外面也导入tomcat
  • web利用会创立一个web版的ioc容器,名字叫 ServletWebServerApplicationContext
  • ServletWebServerApplicationContext 它在我的项目一启动的时候寻找 ServletWebServerFactory(Servlet 的web服务器工厂—> 这个工厂生产 Servlet 的web服务器)
  • SpringBoot底层默认有很多的WebServer工厂:TomcatServletWebServerFactory, JettyServletWebServerFactory, UndertowServletWebServerFactory
  • 这些web服务器工厂不须要咱们配,底层间接会有一个主动配置类ServletWebServerFactoryAutoConfiguration
  • ServletWebServerFactoryAutoConfiguration导入了ServletWebServerFactoryConfiguration(配置类)
  • ServletWebServerFactoryConfiguration 配置类 依据动静判断零碎中到底导入了哪个Web服务器的包。(默认是web-starter导入tomcat包),容器中就有 TomcatServletWebServerFactory
  • TomcatServletWebServerFactory 创立出Tomcat服务器TomcatWebServer并启动;TomcatWebServer 的结构器领有初始化办法initialize,这个初始化办法把所有货色筹备好,把tomcat调用start办法this.tomcat.start();启动tomcat
  • 其实内嵌服务器,就是手动把启动服务器的代码调用(前提是tomcat外围jar包存在,能力启动tomcat)

2、定制Servlet容器

  • 实现 WebServerFactoryCustomizer<ConfigurableServletWebServerFactory>
    ○ 把配置文件的值和ServletWebServerFactory 进行绑定
  • 批改配置文件 server.xxx
  • 间接自定义 ConfigurableServletWebServerFactory

xxxxxCustomizer:定制化器,能够扭转xxxx的默认规定

import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
import org.springframework.stereotype.Component;

@Component
public class CustomizationBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {

    @Override
    public void customize(ConfigurableServletWebServerFactory server) {
        server.setPort(9000);
    }

}

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理