сейчас, 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
Пожалуйста, исправьте кавычки в исключении Tomcat в вашем Gradle согласно ссылке :
configurations { compile.exclude module: 'spring-boot-starter-tomcat' }
Затем очистите и постройте проект.
Затем подтвердите, что зависимость Tomcat отсутствует.