2016-10-22 1 views
0

gwt 버전을 2.3 to 2.7 및 일부 다른 모듈로 업그레이드합니다. 받는다는 성공적으로 끝을 구축,하지만 난 superDevMode에서 실행할 때 예외부두 전용 및 실패 시동

java.lang.IllegalArgumentException: Object of class 'com.google.gwt.dev.shell.jetty.JettyLauncher.WebAppContextWithReload' is not of type 'org.eclipse.jetty.webapp.WebAppContext'. Object Class and type Class are from different loaders. 

내가 어떤 생각을하지 않은 얻을.

사용 :

  • 인 IntelliJ (14)
  • 부두 9.3.12.v20160915
  • 봄 4.3.3.RELEASE
  • 서블릿 API 3.1.0
[WARN] Failed startup of context c.g.g.d.s.j.WebAppContextWithReload{/,file:/home/.../modules/core-war/target/x12/},/home/.../modules/core-war/target/x12 
java.lang.IllegalArgumentException: Object of class 'com.google.gwt.dev.shell.jetty.JettyLauncher.WebAppContextWithReload' is not of type 'org.eclipse.jetty.webapp.WebAppContext'. Object Class and type Class are from different loaders. 
at org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.configure(XmlConfiguration.java:323) 
at org.eclipse.jetty.xml.XmlConfiguration.configure(XmlConfiguration.java:281) 
at org.eclipse.jetty.webapp.JettyWebXmlConfiguration.configure(JettyWebXmlConfiguration.java:103) 
at org.eclipse.jetty.webapp.WebAppContext.configure(WebAppContext.java:468) 
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1237) 
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:717) 
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:494) 
at com.google.gwt.dev.shell.jetty.JettyLauncher$WebAppContextWithReload.doStart(JettyLauncher.java:541) 
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64) 
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:95) 
at org.eclipse.jetty.server.handler.RequestLogHandler.doStart(RequestLogHandler.java:162) 
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64) 
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:95) 
at org.eclipse.jetty.server.Server.doStart(Server.java:282) 
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64) 
at com.google.gwt.dev.shell.jetty.JettyLauncher.start(JettyLauncher.java:740) 
at com.google.gwt.dev.DevMode.doStartUpServer(DevMode.java:632) 
at com.google.gwt.dev.DevModeBase.startUp(DevModeBase.java:1054) 
at com.google.gwt.dev.DevModeBase.run(DevModeBase.java:836) 
at com.google.gwt.dev.DevMode.main(DevMode.java:413) 
+0

당신도 구성을 추가 할 수의 클래스 경로 내부 경로를 추가하여이 jar 파일에 종속성을 추가? –

+0

어떤 구성입니까? web.xml? – Alireza

+0

이 질문은 비슷한 예외가 있습니다 : http://stackoverflow.com/questions/10800922/jetty-env-xml-with-datasource-leads-to-failing-webappcontext-on-mvn-jettyrun 수용 대답은 부두를 제거하는 것이 좋습니다 -maven-plugin. –

답변

0

나는 나의 WEB-INF/lib에서 gwt-dev.jar을 제거하고 내 개미

 <java classname="com.google.gwt.dev.DevMode" dir="core-war/target/" failonerror="false" fork="true"> 
     <classpath> 
      <path refid="project.source.path"/> 
      <path refid="project.class.path"/> 
      <path location="${basedir}/build-conf/lib/ojdbc-11g-1.6.jar" /> 
      <path location="${mvn.repo.dir}org/netezza/nzjdbc/4.6/nzjdbc-4.6.jar" /> 
      <path location="${mvn.repo.dir}/com/google/gwt/gwt-dev/${gwt.version}/gwt-dev-2.7.0.jar" /> 
     </classpath> 
2

gwt-dev.jar은 웹 서버 클래스 경로에 있으며 반드시 없어야합니다. gwt-dev.jar을 제거하십시오. 그것이 가능하다면 범위를 <scope>provided</scope>으로 지정하면 WEB-INF/libs 폴더에 들어 가지 않습니다. WEB-INF/libs 폴더에서 gwt-dev.jar를 확인하고 필요한 경우 제거하십시오.