SpringBoot更换WEB容器

Spring boot web默认使用tomcat容器,可以更换为jetty

  1. 排除spring-boot-starter-tomcat

    org.springframework.boot
    spring-boot-starter-web
    
        
            org.springframework.boot
            spring-boot-starter-tomcat
        
    

加入spring-boot-starter-jetty


    org.springframework.boot
    spring-boot-starter-jetty

 

你可能感兴趣的:(Spring,Boot)