Jetty 在关机时抛出 NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback
Posted
技术标签:
【中文标题】Jetty 在关机时抛出 NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback【英文标题】:Jetty throws NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback on shutdown 【发布时间】:2015-03-26 01:17:32 【问题描述】:我们的 Maven 构建在码头关闭的构建结束时抛出一个我不明白的 NoClassDefFoundError。有谁知道这是从哪里来的以及如何解决它?
这是 pom 文件中的依赖项:
<dependencies>
<dependency>
<groupId>com.restfuse</groupId>
<artifactId>com.eclipsesource.restfuse</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.pe-international</groupId>
<artifactId>bom.model</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>json-path</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>xml-path</artifactId>
<version>2.3.4</version>
</dependency>
</dependencies>
码头配置:
<!-- Start Jetty -->
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.2.v20140723</version>
<configuration>
<war>$basedir/target/bla.war</war>
<httpConnector>
<port>8088</port>
</httpConnector>
<webApp>
<contextPath>/bla</contextPath>
</webApp>
<systemProperties>
<systemProperty>
<name>config.dir</name>
<value>$basedir/target/config.dir</value>
</systemProperty>
</systemProperties>
<stopKey>fooStopBla</stopKey>
<stopPort>8089</stopPort>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>process-test-resources</phase>
<goals>
<goal>deploy-war</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
这里是 mvn 依赖:树
[INFO] com.company:our.endpoint.test:jar:1.0.0-SNAPSHOT
[INFO] +- com.restfuse:com.eclipsesource.restfuse:jar:1.0.0:compile
[INFO] | +- org.mortbay.jetty:jetty-j2se6:jar:6.1.26:compile
[INFO] | | \- org.mortbay.jetty:jetty:jar:6.1.26:compile
[INFO] | | +- org.mortbay.jetty:jetty-util:jar:6.1.26:compile
[INFO] | | \- org.mortbay.jetty:servlet-api:jar:2.5-20081211:compile
[INFO] | \- com.sun.jersey:jersey-bundle:jar:1.9.1:compile
[INFO] | \- javax.ws.rs:jsr311-api:jar:1.1.1:compile
[INFO] +- commons-io:commons-io:jar:2.4:compile
[INFO] +- org.slf4j:jcl-over-slf4j:jar:1.7.7:test
[INFO] | \- org.slf4j:slf4j-api:jar:1.7.7:test
[INFO] +- org.easytesting:fest-assert:jar:1.4:test
[INFO] | \- org.easytesting:fest-util:jar:1.1.6:test
[INFO] +- com.company:our.model:jar:1.0.0-SNAPSHOT:test
[INFO] | +- org.jscience:jscience:jar:4.3.1:test
[INFO] | | \- org.javolution:javolution:jar:5.2.3:test
[INFO] | +- org.jvnet.jaxb2_commons:jaxb2-basics-runtime:jar:0.6.5:test
[INFO] | +- org.springframework:spring-beans:jar:4.1.1.RELEASE:test
[INFO] | | \- org.springframework:spring-core:jar:4.1.1.RELEASE:test
[INFO] | +- org.springframework:spring-context:jar:4.1.1.RELEASE:test
[INFO] | | +- org.springframework:spring-aop:jar:4.1.1.RELEASE:test
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:test
[INFO] | | \- org.springframework:spring-expression:jar:4.1.1.RELEASE:test
[INFO] | \- com.google.guava:guava:jar:15.0:test
[INFO] +- com.jayway.restassured:rest-assured:jar:2.3.4:compile
[INFO] | +- org.codehaus.groovy:groovy:jar:2.3.6:compile
[INFO] | +- org.codehaus.groovy:groovy-xml:jar:2.3.6:compile
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.3.5:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.3.2:compile
[INFO] | | +- commons-logging:commons-logging:jar:1.1.3:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.6:compile
[INFO] | +- org.apache.httpcomponents:httpmime:jar:4.3.5:compile
[INFO] | +- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | +- org.hamcrest:hamcrest-library:jar:1.3:compile
[INFO] | \- org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile
[INFO] +- com.jayway.restassured:json-path:jar:2.3.4:compile
[INFO] | +- org.codehaus.groovy:groovy-json:jar:2.3.6:compile
[INFO] | \- com.jayway.restassured:rest-assured-common:jar:2.3.4:compile
[INFO] +- com.jayway.restassured:xml-path:jar:2.3.4:compile
[INFO] | \- org.apache.commons:commons-lang3:jar:3.3.2:compile
[INFO] +- junit:junit:jar:4.11:test
[INFO] \- org.mockito:mockito-all:jar:1.9.5:test
这是我们的堆栈跟踪:
2015-01-27 13:04:57.810:WARN:oejuc.AbstractLifeCycle:Thread-1: FAILED org.eclipse.jetty.maven.plugin.JettyServer@6dd82486: java.lang.NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback
java.lang.NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback
at org.eclipse.jetty.server.AbstractConnector.shutdown(AbstractConnector.java:284)
at org.eclipse.jetty.server.AbstractNetworkConnector.shutdown(AbstractNetworkConnector.java:108)
at org.eclipse.jetty.server.ServerConnector.shutdown(ServerConnector.java:298)
at org.eclipse.jetty.maven.plugin.MavenServerConnector.shutdown(MavenServerConnector.java:140)
at org.eclipse.jetty.server.Server.doStop(Server.java:397)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.thread.ShutdownThread.run(ShutdownThread.java:132)
Caused by:
java.lang.ClassNotFoundException: org.eclipse.jetty.util.FutureCallback
at org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy.loadClass(SelfFirstStrategy.java:50)
at org.codehaus.plexus.classworlds.realm.ClassRealm.unsynchronizedLoadClass(ClassRealm.java:259)
at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:235)
at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:227)
at org.eclipse.jetty.server.AbstractConnector.shutdown(AbstractConnector.java:284)
at org.eclipse.jetty.server.AbstractNetworkConnector.shutdown(AbstractNetworkConnector.java:108)
at org.eclipse.jetty.server.ServerConnector.shutdown(ServerConnector.java:298)
at org.eclipse.jetty.maven.plugin.MavenServerConnector.shutdown(MavenServerConnector.java:140)
at org.eclipse.jetty.server.Server.doStop(Server.java:397)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.thread.ShutdownThread.run(ShutdownThread.java:132)
Exception in thread "Thread-1" java.lang.NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback
at org.eclipse.jetty.server.AbstractConnector.shutdown(AbstractConnector.java:284)
at org.eclipse.jetty.server.AbstractNetworkConnector.shutdown(AbstractNetworkConnector.java:108)
at org.eclipse.jetty.server.ServerConnector.shutdown(ServerConnector.java:298)
at org.eclipse.jetty.maven.plugin.MavenServerConnector.shutdown(MavenServerConnector.java:140)
at org.eclipse.jetty.server.Server.doStop(Server.java:397)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.thread.ShutdownThread.run(ShutdownThread.java:132)
Caused by: java.lang.ClassNotFoundException: org.eclipse.jetty.util.FutureCallback
at org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy.loadClass(SelfFirstStrategy.java:50)
at org.codehaus.plexus.classworlds.realm.ClassRealm.unsynchronizedLoadClass(ClassRealm.java:259)
at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:235)
at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:227)
... 7 more
有时堆栈跟踪会发生变化,这会出现:
2015-01-28 10:12:55.630:WARN:oejuc.AbstractLifeCycle:ShutdownMonitor: FAILED org.eclipse.jetty.servlet.ServletHandler@3accac55: java.lang.NoClassDefFoundError: org/eclipse/jetty/util/LazyList
java.lang.NoClassDefFoundError: org/eclipse/jetty/util/LazyList
at org.eclipse.jetty.servlet.ServletHandler.doStop(ServletHandler.java:266)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.security.SecurityHandler.doStop(SecurityHandler.java:411)
at org.eclipse.jetty.security.ConstraintSecurityHandler.doStop(ConstraintSecurityHandler.java:457)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.server.session.SessionHandler.doStop(SessionHandler.java:127)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.server.handler.ContextHandler.doStop(ContextHandler.java:835)
at org.eclipse.jetty.servlet.ServletContextHandler.doStop(ServletContextHandler.java:215)
at org.eclipse.jetty.webapp.WebAppContext.doStop(WebAppContext.java:529)
at org.eclipse.jetty.maven.plugin.JettyWebAppContext.doStop(JettyWebAppContext.java:388)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:143)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:162)
at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:73)
at org.eclipse.jetty.server.Server.doStop(Server.java:456)
at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:89)
at org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.stopLifeCycles(ShutdownMonitor.java:273)
at org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.run(ShutdownMonitor.java:172)
【问题讨论】:
运行mvn dependency:tree
并发布结果。
我将它们添加到上面的帖子中
见@Jan 的回答。不久前我已经为此提交了一个错误请求 (bugs.eclipse.org/bugs/show_bug.cgi?id=438500),我可以确认这将随着 Jetty 的升级而消失。
我使用本官方教程的配置文件在Jetty 9.3.7.v20160115 中重现了你的bug eclipse.org/jetty/documentation/current/jetty-maven-plugin.html 当我使用“mvn”时出现“target/classes”目录不存在时jetty:run",很奇怪。
在 jetty-9.3 系列中,当我们切换到使用 java nio Path 类时,jetty-maven-plugin 引入了这个错误(如果没有目标/类则错误)。这已在 jetty-9.3.12 中修复(目前仍仅在快照中)。请参阅错误 github.com/eclipse/jetty.project/issues/785。
【参考方案1】:
请注意,因为一些其他示例会使您向 jersey-container-jetty-http
添加 maven 依赖项,其中包括可能较旧版本的 jetty http。如果您已经有 jetty-server
部门,请删除该依赖项。在你的 pom 文件中。
【讨论】:
谢谢,这最终成为我在自己的项目中遇到的问题(嗯,我继承了一个)。我越来越想知道 npm 在 javascript 中的自我造成的依赖地狱是否受到 Java 中这种内联的启发。 我遇到了与一组不同的依赖项相关的问题,我不得不排除jetty-util
而不是 jetty-http
。【参考方案2】:
您的环境中似乎同时有 2 个版本的 Jetty。
您的 mvn dependency:tree
在您的 <scope>compile</scope>
依赖项中显示以下内容。
[INFO] com.company:our.endpoint.test:jar:1.0.0-SNAPSHOT
[INFO] +- com.restfuse:com.eclipsesource.restfuse:jar:1.0.0:compile
[INFO] | +- org.mortbay.jetty:jetty-j2se6:jar:6.1.26:compile
[INFO] | | \- org.mortbay.jetty:jetty:jar:6.1.26:compile
[INFO] | | +- org.mortbay.jetty:jetty-util:jar:6.1.26:compile
[INFO] | | \- org.mortbay.jetty:servlet-api:jar:2.5-20081211:compile
这里有两个问题。
首先,restfuse
似乎很旧,很旧,并且想要 Jetty 6.1.26。
(这个版本的 Jetty 早在 2007 年就已停产/停产)
其次,当jetty-maven-plugin
运行时,此版本可能会影响您的应用程序的行为。
为 Jetty 6 添加排除项,然后试一试。
<dependency>
<groupId>com.restfuse</groupId>
<artifactId>com.eclipsesource.restfuse</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-j2se6</artifactId>
</exclusion>
</exclusions>
</dependency>
但请记住,restfuse 1.0.0 可能不适用于 Jetty 9。如果是这样,您需要寻找已针对 Jetty 9 更新的较新版本的 restfuse。
【讨论】:
感谢您的回复。我已经完全删除了 restfuse 作为依赖项,但仍然得到相同的异常: NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback【参考方案3】:我在 9.2.3 中修复了这个问题。请参阅错误报告https://bugs.eclipse.org/bugs/show_bug.cgi?id=438500
【讨论】:
我更新到 9.2.7.v20150116,但不幸的是我仍然遇到异常(见上文):org.eclipse.jetty.servlet.ServletHandler@3accac55: java.lang.NoClassDefFoundError: org/ eclipse/jetty/util/LazyList at org.eclipse.jetty.servlet.ServletHandler.doStop(ServletHandler.java:266 我在最新版本中也得到了这个(我也尝试使用较旧的 9.2.3 版本,但这并没有解决问题)。我似乎只在 Travis 上得到它,而不是出于某种原因在我自己的机器上.. 尽管似乎在有关此问题的其他几个相关 *** 问题中提到的 stopWait 配置确实解决了该问题。自从我添加了该配置以来,至少不再有 NoClassDefFoundErrors(到目前为止)。 感谢您的评论。你能发布有用的帖子吗?【参考方案4】:我收到此错误是因为目录“target/classes”不存在。解决此问题的一种快速方法是简单地创建一个 src/main/java 文件夹,然后在其中创建任何类(甚至是空类)。
【讨论】:
在 jetty-9.3 系列中,当我们切换到使用 java nio Path 类时,jetty-maven-plugin 引入了这个错误(如果没有目标/类则错误)。这已在 jetty-9.3.12 中修复(目前仍仅在快照中)。请参阅错误github.com/eclipse/jetty.project/issues/785。【参考方案5】:我在使用 eclipse Jetty 插件时遇到了类似的问题。通过添加适当的依赖项来解决它。欲了解更多详情,请访问 -http://eclipse-jetty.github.io/faq.html
【讨论】:
【参考方案6】:我遇到了同样的问题,我使用的是码头版本 9.4.12.v20180830 之后我将版本更改为 9.4.12.RC2 版本,一切正常
【讨论】:
以上是关于Jetty 在关机时抛出 NoClassDefFoundError: org/eclipse/jetty/util/FutureCallback的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 1.5.9和嵌入式jetty服务器在运行时抛出空指针异常?
DataAdapter 在填充 DataTable 时抛出错误
为啥 FtpWebRequest 恰好在长传输结束时抛出 WebException?