首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Grails应用程序没有在Tomcat中启动,但没有错误或警告。

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

Stack Overflow用户
提问于 2016-10-06 10:28:00
回答 1查看 1.1K关注 0票数 1

我遵循了https://grails.org/wiki/Quick%20Start的教程,当我用“grails”启动应用程序时,它工作得很好。

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

代码语言:javascript
复制
 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似乎没有被执行。我在里面有一张从猫开始时没有显示出来的照片

添加Build.gradle

代码语言:javascript
复制
 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:spring-boot-starter-tomcat“是由grails生成的,则我进行了更改。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-10-06 13:07:13

嗯,经过反复试验,我发现我不得不把它移除,

代码语言:javascript
复制
provided "org.codehaus.groovy:groovy-ant"

现在一切都很顺利。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39893592

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档