春季靴子是从码头而不是tomcat开始的,该怎么办?

时间:2018-10-29 10:28:42

标签: spring-boot tomcat jetty

现在,gradle是

configurations {
    compile.exclude module: "spring-boot-starter-tomcat"
}

dependencies {
    compile('org.springframework.boot:spring-boot-starter-data-redis')
    compile 'org.springframework.boot:spring-boot-starter-data-jpa'
    compile 'org.springframework.boot:spring-boot-starter-jersey'
    compile 'org.springframework.boot:spring-boot-starter-web'
    compile('org.springframework.boot:spring-boot-starter-jetty')
}

但是依赖项仍然存在tomcat enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

请按照reference正确地排除Tomcat中的引号:

configurations {
    compile.exclude module: 'spring-boot-starter-tomcat'
}

然后清理并构建项目。

然后确认不存在Tomcat依赖项。