Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

12 строки
368 B
Plaintext

https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#howto-use-jetty-instead-of-tomcat
configurations {
compile.exclude module: "spring-boot-starter-tomcat"
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.5.6.RELEASE")
compile("org.springframework.boot:spring-boot-starter-jetty:1.5.6.RELEASE")
// ...
}