使用run-war抛出异常的Grails部署

时间:2015-01-23 06:23:48

标签: grails

环境:Windows 7,JDK1.7,GGTS 3.6.1,数据库:Postgres 9.3,Grails 2.4.3

与run-app一起使用时,系统似乎运行正常。 当我使用run-war时,它会构建war文件,并在运行应用程序时抛出异常,附在下面。 (java.lang.NoClassDefFoundError:无法初始化类grails.util.Holders) 当我查看buildconfig.groovy并删除了我添加的几个条目,以获取此应用程序所需的jar文件的依赖项。这些罐子由我开发并具有产品特定代码。一旦删除,系统启动时没有任何异常。 这些jar有java类文件(不是groovy),这些是使用JDK 1.7开发的。 这些类文件在应用程序中使用(特定于产品) 添加了postgres数据库而不是默认数据库。 从属罐子是我们内部回购的一部分。 为了确保它不是应用程序的问题,我创建了一个示例应用程序并尝试了run-war;它似乎工作正常。当我在构建配置中添加这些依赖的jar条目时,它开始抛出异常。 repo url已在依赖jar的构建配置中使用

例外:

Error | SLF4J: Class path contains multiple SLF4J bindings.
Error | SLF4J: Found binding in [jar:file:/C:/software/grails-2.4.3/dist/grails-plugin-log4j-2.4.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
Error | SLF4J: Found binding in [jar:file:/C:/<loc>/<applicationName>/target/work/tomcat/webapps/<applicationName>/WEB-INF/lib/grails-plugin-log4j-2.4.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
Error | SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
Error | SLF4J: Actual binding is of type [org.slf4j.impl.GrailsSlf4jLoggerFactory]
Error | log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
Error | log4j:WARN Please initialize the log4j system properly.
Error | log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
Exception sending context initialized event to listener instance of class org.codehaus.groovy.grails.web.context.GrailsContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'grailsApplication' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class grails.util.Holders
Caused by: java.lang.NoClassDefFoundError: Could not initialize class grails.util.Holders
    at java.util.concurrent.FutureTask.run(FutureTask.java:262)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:744)
Error listenerStart
Context [/<applicationName>] startup failed due to previous errors
The web application [/<applicationName>] registered the JDBC driver [org.h2.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
The web application [/<applicationName>] registered the JDBC driver [org.postgresql.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.

1 个答案:

答案 0 :(得分:0)

NoClassDefFoundError通常很难修复。它很容易与ClassNotFoundException混淆,但它非常不同。如果你得到一个ClassNotFoundException,你就有了它试图加载但无法找到的类的名称。这通常很容易修复 - 找到包含它的jar,并为其添加依赖项,从它部署到的Maven仓库中解析它,然后重新开始工作。

但是当您尝试加载的类无法找到依赖的类或资源时,会发生NoClassDefFoundError。知道课程名称通常不是很有帮助,而且这里肯定是正确的 - Holders是一个Grails课程,显然在你的课程中。奇怪的是,它的所有依赖关系当然也都在类路径中,所以它可能只有几个罐子。

但是,由于您已经手动将jar添加到lib目录中,因此您很可能错过了其中一个的依赖关系。查看您的导入并尝试找到缺失的内容。这可能是微不足道的事情,对你正在尝试做的事情并不重要。但如果与其间接相关的类无法加载,则需要确保它在那里。