зеркало из
https://github.com/iharh/notes.git
synced 2025-11-01 14:16:09 +02:00
12 строки
368 B
Plaintext
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")
|
|
// ...
|
|
}
|