2017-07-25 5 views
3

Ich sehe dies erst kürzlich, als ich meinen Java-Server starte. Hat jemand anderes das gesehen? Wenn ja, was ist das Problem? Ich kann bestätigen, dass die Jars und die Modul-info.class in den relevanten Pfaden vorhanden sind.Fehler beim Scannen des Eintrags "module-info.class" beim Starten von Jetty-Server

MultiException[java.lang.RuntimeException: Error scanning entry module-info.class from jar 
file:jetty/9.2.4.v20141103/tempDirectory/webapp/WEB-INF/lib/slf4j-api-1.8.0-alpha2.jar, java.lang.RuntimeException: Error scanning entry module-info.class from jar 
file:jetty/9.2.4.v20141103/tempDirectory/webapp/WEB-INF/lib/log4j-over-slf4j-1.8.0-alpha2.jar, java.lang.RuntimeException: Error scanning entry module-info.class from jar 
file:jetty/9.2.4.v20141103/tempDirectory/webapp/WEB-INF/lib/jcl-over-slf4j-1.8.0-alpha2.jar] at 
org.eclipse.jetty.annotations.AnnotationConfiguration.scanForAnnotations(AnnotationConfiguration.java:535) at 
org.eclipse.jetty.annotations.AnnotationConfiguration.configure(AnnotationConfiguration.java:446) at 
org.eclipse.jetty.webapp.WebAppContext.configure(WebAppContext.java:473) at 
org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1331) at 
org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741) at 
org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:499) at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at 
org.eclipse.jetty.deploy.bindings.StandardStarter.processBinding(StandardStarter.java:41) at 
org.eclipse.jetty.deploy.AppLifeCycle.runBindings(AppLifeCycle.java:186) at 
org.eclipse.jetty.deploy.DeploymentManager.requestAppGoal(DeploymentManager.java:498) at 
org.eclipse.jetty.deploy.DeploymentManager.addApp(DeploymentManager.java:146) at 
org.eclipse.jetty.deploy.providers.ScanningAppProvider.fileAdded(ScanningAppProvider.java:180) at 
org.eclipse.jetty.deploy.providers.ScanningAppProvider$1.fileAdded(ScanningAppProvider.java:64) at 
org.eclipse.jetty.util.Scanner.reportAddition(Scanner.java:609) at 
org.eclipse.jetty.util.Scanner.reportDifferences(Scanner.java:528) at 
org.eclipse.jetty.util.Scanner.scan(Scanner.java:391) at 
org.eclipse.jetty.util.Scanner.doStart(Scanner.java:313) at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at 
org.eclipse.jetty.deploy.providers.ScanningAppProvider.doStart(ScanningAppProvider.java:150) at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at 
org.eclipse.jetty.deploy.DeploymentManager.startAppProvider(DeploymentManager.java:560) at 
org.eclipse.jetty.deploy.DeploymentManager.doStart(DeploymentManager.java:235) at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at 
org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132) at 
org.eclipse.jetty.server.Server.start(Server.java:387) at 
org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114) at 
org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61) at 
org.eclipse.jetty.server.Server.doStart(Server.java:354) at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68) at 
org.eclipse.jetty.xml.XmlConfiguration$1.run(XmlConfiguration.java:1255) at 
java.security.AccessController.doPrivileged(Native Method)  at 
org.eclipse.jetty.xml.XmlConfiguration.main(XmlConfiguration.java:1174) at 
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at 
java.lang.reflect.Method.invoke(Method.java:483) at 
org.eclipse.jetty.start.Main.invokeMain(Main.java:323) at 
org.eclipse.jetty.start.Main.start(Main.java:820) at 
org.eclipse.jetty.start.Main.main(Main.java:112) 
+0

Willkommen bei StackOverflow! Was hast du bisher versucht? Zeigen Sie Ihre Arbeit. :) –

+0

Ich habe versucht, eine frühere Version von SLF zu verwenden. Es funktioniert, wenn ich Version 1.7.9 verwende. –

+0

Was ist die Stegversion? und Java 7, 8? –

Antwort

4

module-info.class ist eine JDK9 (JPMS) -Funktion.

Jetty nicht unterstützt JDK9 (noch)

Ausgabe darüber bei https://github.com/eclipse/jetty.project/issues/1692

Unterstützung für module-info.class in JAR-Datei Scannen ignoriert wird in einer zukünftigen Jetty 9.4.x Release erscheinen.

+0

Könnten Sie sagen, wann Jetty JDK 9 unterstützt? –

Verwandte Themen