jeesite配置jetty启动失败

今天在搭建jeesite 4.x时配置jetty启动遇到的一个坑

Failed startup of context o.e.j.m.p.JettyWebAppContext@6687c7af{/,file:/C:/Users/...web-new/src/main/webapp/,STARTING}{file:/...web-new/src/main/webapp/}
MultiException[java.lang.RuntimeException: Error scanning entry META-INF/versions/9/javax/xml/bind/ModuleUtil.class from jar file:/D:/repository/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar, java.lang.RuntimeException: Error scanning entry module-info.class from jar file:/D:/repository/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar]

主要就是扫描module-info.class文件时挂了。百度了一圈都说是jdk9才支持module特性,但是又没说如何解决,忧伤呀。

后用google搜了下,直接找的了github上别人关于这个问题提的issue,见下面的link。看回复好像是jetty自身的问题,比较新的版本已经忽略了moudle-info.class文件,解决了这个问题。

https://github.com/eclipse/jetty.project/issues/2192

然后我就在修改了pom里的jetty的版本,由9.2.22.v20170606改成了9.4.8.v20171121再启动就好了。

            
                org.eclipse.jetty
                jetty-maven-plugin
                9.4.8.v20171121

            

这样就没问题了
 

你可能感兴趣的:(jeesite)