Spring Boot在使用bootRun时没有启动Jetty

时间:2014-06-18 11:22:22

标签: spring jetty spring-boot

在我们当前的应用程序中,我们希望在Spring Boot应用程序中使用Jetty而不是Tomcat。正如我在文档中读到的不包括tomcat并引入Jetty就足够了。

的build.gradle

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web") {
        exclude module: "spring-boot-starter-tomcat"
    }
    compile("org.springframework.boot:spring-boot-starter-jetty")
}

但是当我尝试使用以下方式运行应用程序时:

# gradle bootRun

Tomcat确实已经消失,但是Jetty没有启动,应用程序只是因为任何明显的错误而终止。关于我做错了什么的提示?

1 个答案:

答案 0 :(得分:0)

使用Boot 1.1.0.RELEASE很适合我。

您需要使用--info--debug)提示运行Gradle命令,以获取有关正在发生的更多信息。