servlet改成springboot,
目录
如何切换成其它的嵌入式小型应用程序容器(码头和逆流)跳靴默认使用的内置小型应用程序容器是TomcatSpringBoot还支持码头和足弓下网开发_嵌入式小型应用程序容器1、切换嵌入式小型应用程序容器2、定制小型应用程序容器
如何切换成其它的嵌入式Servlet容器(Jetty和Undertow)
SpringBoot默认使用的内置Servlet容器是Tomcat
然而跳羚还支持其它的小型应用程序容器默认的雄猫只是其中一种
SpringBoot还支持Jetty和Undertow
码头适合用于长链接应用例如聊天逆流是一个高性能非阻塞的小型应用程序容器并发性能非常好但不支持jsp
若要切换只需要在pom文件中排除自带的Tomcat启动器 再引入其它Servlet容器的启动器即可
弹簧靴起动器网里面引入了弹簧靴起动器雄猫因此默认使用雄猫
因此只需排除原先的雄猫再引入要添加的小型应用程序容器的依赖即可:
切换成Jetty:
!-引入网模块-依赖groupIdorg.springframework.boot/groupId artifactId spring-boot-starter-web/artifactId排除!-排除雄猫容器-exclusion artifactId spring-boot-starter-Tomcat/artifactId groupId org . spring framework . boot/groupId/exclusion/exclusions/dependency!-引入其它的小型应用程序容器-依赖性人工弹簧靴-起动器-码头/人工groupIdorg.springframework.boot/groupId/dependency
Jetty启动成功
同理切换成逆流:
!-引入网模块-依赖groupIdorg.springframework.boot/groupId artifactId spring-boot-starter-web/artifactId排除!-排除雄猫容器-exclusion artifactId spring-boot-starter-Tomcat/artifactId groupId org . spring framework . boot/groupId/exclusion/exclusions/dependency!-引入其它的小型应用程序容器-依赖人工制造的弹簧-启动-起动器-欠流/人工制造的groupIdorg.springframework.boot/groupId/dependency
Underto
w启动成功
SpringBoot web开发_嵌入式Servlet容器
1、切换嵌入式Servlet容器
1.1、SpringBoot支持的Servlet种类及其切换
1)默认支持的webServer:Tomcat、Jrtty、Undertow
2)切换服务器
<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>
1.2、原理
1)SpringBoot应用启动发现当前是Web应用。web场景包-导入tomcat
2)web应用会创建一个web版的ioc容器 ServletWebServerApplicationContext
3)ServletWebServerApplicationContext 启动的时候寻找 ServletWebServerFactory(Servlet 的web服务器工厂---> Servlet 的web服务器)
4)SpringBoot底层默认有很多的WebServer工厂;
TomcatServletWebServerFactory
JettyServletWebServerFactory
UndertowServletWebServerFactory
5)底层直接会有一个自动配置类。
ServletWebServerFactoryAutoConfiguration导入了ServletWebServerFactoryConfiguration(配置类)
6)ServletWebServerFactoryConfiguration 配置类 根据动态判断系统中到底导入了那个Web服务器的包。(默认是web-starter导入tomcat包),容器中就有 TomcatServletWebServerFactory
7)TomcatServletWebServerFactory 创建出Tomcat服务器并启动;TomcatWebServer 的构造器拥有初始化方法initialize---this.tomcat.start();
8)内嵌服务器,就是手动把启动服务器的代码调用(tomcat核心jar包存在)
2、定制Servlet容器
2.1、修改配置文件
通过对application.properties配置文件的设置,定制Servlet容器
#修改servlet容器server.port=8000#server.undertow.accesslog.dir=/tmp
2.2、实现 WebServerFactoryCustomizer
xxxxxCustomizer:定制化器,可以改变xxxx的默认规则
通过WebServerFactoryCustomizer修改 Servlet 容器的响应端口号:
import org.springframework.boot.web.server.WebServerFactoryCustomizer;import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;import org.springframework.stereotype.Component; @Componentpublic class CustomizationBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> { @Override public void customize(ConfigurableServletWebServerFactory server) { server.setPort(9000); }}
2.3、ConfigurableServletWebServerFactory
直接自定义 ConfigurableServletWebServerFactory 的接口实现类
public interface ConfigurableWebServerFactory extends WebServerFactory, ErrorPageRegistry { void setPort(int port); void setAddress(InetAddress address); void setErrorPages(Set<? extends ErrorPage> errorPages); void setSsl(Ssl ssl); void setSslStoreProvider(SslStoreProvider sslStoreProvider); void setHttp2(Http2 http2); void setCompression(Compression compression); void setServerHeader(String serverHeader); default void setShutdown(Shutdown shutdown) { }}
ConfigurableServletWebServerFactory 接口实现类(框架中默认实现类):
通过自定义ConfigurableServletWebServerFactory 接口的实现类,即可定制Servlet容器
以上为个人经验,希望能给大家一个参考,也希望大家多多支持盛行IT。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。