请指导我解决以下问题。
我为视图实体实体创建了一个单独的GWT模块。
以下是我的项目结构:
gwt应用程序:(此处存在与演示相关的代码,我使用了gwt平台和SmartGwt)
gwt-commons实体:(gwt模块:它将包含在gwt应用程序和gwt服务层之间共享的实体)
gwt服务层:(将包含应用程序的业务逻辑)
当我在开发模式下运行这个应用程序(Eclipse->run As->Web application)时,我面临以下异常:
(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应用程序中有实体时,我不会得到这样的异常。
但我必须对我的应用程序进行重大的体系结构更改,所以我必须将视图实体放在单独的模块中,以便可以共享。
感谢任何线索。
明白了。忘记为网格的属性值调用toString()。奇怪的是,它在开发模式下抛出了上面提到的异常,但如果生成的GWT应用程序之战部署在tomcat中,它就可以正常工作。GWT带来了巨大的痛苦,我花了3天时间来解决这个问题。