如何在Spring-boot中轻松配置Jetty?

通过遵循本教程,我可以使用以下依赖项启动Jetty的spring-boot。

    <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-actuator</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-jetty</artifactId>

</dependency>

但是,如何配置Jetty服务器,例如:

  1. 服务器线程(队列线程池)
  2. 服务器连接器
  3. Https配置。
  4. Jetty中所有可用的配置…?

有一个简单的方法可以做

  1. application.yml?
  2. 配置类?

任何例子将不胜感激。

非常感谢!!

回答:

Servlet容器有一些常规扩展点,还有一些将Jetty

API调用插入其中的选项,因此,我认为可以满足您的所有需求。一般建议可以在文档中找到。Jetty尚未引起足够的重视,因此声明式配置可能没有与Tomcat相同的选项,并且可以肯定的是它不会被使用太多。如果您想帮助改变这一点,欢迎提供帮助。

以上是 如何在Spring-boot中轻松配置Jetty? 的全部内容, 来源链接: utcz.com/qa/429134.html

回到顶部