通过遵循本教程,我可以使用以下依赖项启动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服务器,例如:
有一个简单的方法可以做
任何例子将不胜感激。
非常感谢!!
Servlet容器有一些常规扩展点,还有一些将Jetty API调用插入其中的选项,因此,我认为可以满足您的所有需求。一般建议可以在文档中找到。Jetty尚未引起足够的重视,因此声明式配置可能没有与Tomcat相同的选项,并且可以肯定的是它不会被使用太多。如果您想帮助改变这一点,欢迎提供帮助。