现在,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
答案 0 :(得分:0)
请按照reference正确地排除Tomcat中的引号:
configurations {
compile.exclude module: 'spring-boot-starter-tomcat'
}
然后清理并构建项目。
然后确认不存在Tomcat依赖项。