Grails应用程序未在Tomcat中启动,但没有错误或警告

Grails应用程序未在Tomcat中启动,但没有错误或警告,tomcat,grails,Tomcat,Grails,我在上遵循了教程,当我使用“grails run app”启动应用程序时,它运行良好 如果我使用“grails war”构建应用程序,并将war部署到tomcat 8中,我只会收到404个错误。tomcat manager应用程序将我的应用程序列为已启动,并且日志文件中没有错误 06-Oct-2016 12:07:30.655 INFO [localhost-startStop-2] org.apache.catalina.startup.HostConfig.deployWAR Deploy

我在上遵循了教程,当我使用“grails run app”启动应用程序时,它运行良好

如果我使用“grails war”构建应用程序,并将war部署到tomcat 8中,我只会收到404个错误。tomcat manager应用程序将我的应用程序列为已启动,并且日志文件中没有错误

 06-Oct-2016 12:07:30.655 INFO [localhost-startStop-2] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive C:\Program Files\Apache Software Foundation\Apache Tomcat 8.0.27\webapps\my-project-0.1.war
 06-Oct-2016 12:07:39.114 INFO [localhost-startStop-2] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive C:\Program Files\Apache Software Foundation\Apache Tomcat 8.0.27\webapps\my-project-0.1.war has finished in 8,459 ms
我错过了什么

我使用Grails3.2.0

似乎Bootstrap.groovy没有执行。我有一个println,从tomcat开始时没有显示

添加Build.gradle

 buildscript {
     repositories {
         mavenLocal()
         maven { url "https://repo.grails.org/grails/core" }
     }
     dependencies {
         classpath "org.grails:grails-gradle-plugin:$grailsVersion"
         classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.11.1"
         classpath "org.grails.plugins:hibernate5:6.0.0"
     }
 }

 version "0.1"
 group "my.project"

 apply plugin:"eclipse"
 apply plugin:"idea"
 apply plugin:"war"
 apply plugin:"org.grails.grails-web"
 apply plugin:"org.grails.grails-gsp"
 apply plugin:"asset-pipeline"

 repositories {
     mavenLocal()
     maven { url "https://repo.grails.org/grails/core" }
 }

 dependencyManagement {
     imports {
         mavenBom "org.grails:grails-bom:$grailsVersion"
     }
     applyMavenExclusions false
 }

 dependencies {
     compile "org.springframework.boot:spring-boot-starter-logging"
     compile "org.springframework.boot:spring-boot-autoconfigure"
     compile "org.grails:grails-core"
     compile "org.springframework.boot:spring-boot-starter-actuator"
     provided "org.springframework.boot:spring-boot-starter-tomcat"
     compile "org.grails:grails-dependencies"
     compile "org.grails:grails-web-boot"
     compile "org.grails.plugins:cache"
     compile "org.grails.plugins:scaffolding"
     compile "org.grails.plugins:hibernate5"
     compile "org.hibernate:hibernate-core:5.1.1.Final"
     compile "org.hibernate:hibernate-ehcache:5.1.1.Final"
     console "org.grails:grails-console"
     profile "org.grails.profiles:web"
     provided "org.codehaus.groovy:groovy-ant"
     runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.11.1"
     runtime "com.h2database:h2"
     testCompile "org.grails:grails-plugin-testing"
     testCompile "org.grails.plugins:geb"
     testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
     testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
 }


 assets {
     minifyJs = true
     minifyCss = true
 }

我更改了提供的“org.springframework.boot:springbootstartertomcat”,其余的由grails生成。

好吧,经过反复试验,我发现我必须删除

provided "org.codehaus.groovy:groovy-ant"

现在一切顺利。

好吧,经过反复试验,我发现我不得不删除

provided "org.codehaus.groovy:groovy-ant"

现在一切都很顺利。

您是否尝试过
GrailsProdWar
?您是使用Java7还是Java8构建war?您的服务器使用Java7或Java8吗?您是否尝试过
GrailsProdWar
?您是否使用Java7或Java8构建war?您的服务器使用的是java 7还是java 8?