SpringBoot使用Jetty

    1. <dependency>
    2. <groupId>org.springframework.boot</groupId>
    3. <artifactId>spring-boot-starter-web</artifactId>
    4. <!-- 使用Jetty,需要在spring-boot-starter-web排除spring-boot-starter-tomcat,因为SpringBoot默认使用tomcat -->
    5. <exclusions>
    6. <exclusion>
    7. <groupId>org.springframework.boot</groupId>
    8. <artifactId>spring-boot-starter-tomcat</artifactId>
    9. </exclusion>
    10. </exclusions>
    11. </dependency>
    12. <!-- Jetty适合长连接应用,就是聊天类的长连接 -->
    13. <dependency>
    14. <groupId>org.springframework.boot</groupId>
    15. <artifactId>spring-boot-starter-jetty</artifactId>
    16. </dependency>