请指导我解决以下问题。
我为视图实体创建了一个单独的 GWT 模块。
以下是我的项目的结构:
gwt-application :(与演示相关的代码位于此处,我使用过 GWT-Platform 和 SmartGwt)
gwt-commons-entities :(GWT 模块:这将包含要在 gwt-applicaiton gwt-service-layer 之间共享的实体)
gwt-service-layer :(将包含应用程序的业务逻辑)
当我在开发模式下运行此应用程序(Eclipse -> 运行方式 -> Web 应用程序)时,我面临以下异常:
(UnknownFileName:-1) 2012-03-26 14:30:47,069 [FATAL] Uncaught Exception:
com.google.gwt.core.client.JavaScriptException: (null): null
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:248)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
at sun.reflect.GeneratedMethodAccessor39.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:292)
at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:546)
at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:363)
at java.lang.Thread.run(Unknown Source)
当我在 gwt-application 中有我的实体时,我没有遇到这种异常。
但是我将不得不对我的应用程序进行重大的架构更改,因此我必须将视图实体放在单独的模块中,以便可以共享它。
感谢任何线索。