1、什么是 Jetty

Jetty 是一个开源的 Java HTTP(Web)服务器和 Java Servlet 容器,它允许开发人员构建动态网络应用程序。它是一个完整的 Java 应用程序服务器,可以在 Java 类路径中运行,而不需要任何外部安装或管理。它提供了一个简单的 Web 服务器,可以用于构建和部署 Web 应用程序,以及一个嵌入式 servlet 容器,用于在 Web 应用程序中运行 servlet。

2、Springboot 使用 Jetty 的方法

Springboot 使用 Jetty 的方法非常简单,只需要在 pom.xml 文件中加入如下依赖:

<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.eclipse.jetty</groupId><artifactId>jetty-servlet</artifactId><version>9.4.14.v20181114</version></dependency>
XML

然后在 application.properties 中添加如下配置:

server.port=8080server.servlet.context-path=/server.servlet.context-parameters.xxx=xxxserver.servlet.context-parameters.yyy=yyyserver.servlet.context-parameters.zzz=zzzserver.servlet.context-parameters.abc=abcspring.main.web-environment=nonespring.main.allow-bean-definition-overriding=true
XML

最后在启动类上添加 @EnableJetty 注解,即可完成 Springboot 使用 Jetty 的配置。

3、Jetty 的优势

Jetty 的优势非常明显,首先它是一个轻量级的 Web 容器,可以实现快速部署,稳定性也比较高,而且它的配置简单,可以实现自定义配置,可以支持大量的并发请求,同时它还支持 SSL、HTTP2,以及支持 WebSocket 等功能。

此外,Jetty 还可以支持多种语言,如 Java、Scala、Groovy、JRuby 等,而且它也支持多种 Web 框架,如 Spring MVC、Struts、Tapestry 等,可以满足不同的开发需求。