весенние ботинки начинаются с молы вместо кота, что делать? - PullRequest
0 голосов
/ 29 октября 2018

сейчас, 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 голосов
/ 29 октября 2018

Пожалуйста, исправьте кавычки в исключении Tomcat в вашем Gradle согласно ссылке :

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

Затем очистите и постройте проект.

Затем подтвердите, что зависимость Tomcat отсутствует.

...