无法使用智能GWT

时间:2012-04-26 08:24:30

标签: gwt smartgwt gwt2

尝试使用智能GWT

使用从下面的链接下载的智能gwt 2.5

smartgwt 2.5

Firefox 6.0

我制作了一个小型网络应用程序项目(没有智能GWT ),这项工作正常。

现在在*同一个项目中我添加了smartGwt 2.5 并添加了<inherits name="com.smartgwt.SmartGwt"/>myprojet.gwt.xml档案中。

但现在当我运行项目时,它会给我以下错误:

[ERROR] [myprojet] - Unable to load module entry point class 
com.smartgwt.client.SmartGwtEntryPoint (see associated exception for details)

com.google.gwt.core.client.JavaScriptException: (TypeError): $wnd.isc is undefined
at com.google.gwt.dev.shell.BrowserChannelServer.invo keJavascript(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.invokeNativeV oid(ModuleSpace.java:289)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNati veVoid(JavaScriptHost.java:107)
at com.smartgwt.client.SmartGwtEntryPoint.init(SmartG wtEntryPoint.java)
at com.smartgwt.client.SmartGwtEntryPoint.onModuleLoa d(SmartGwtEntryPoint.java:239)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(Module Space.java:396)
at com.google.gwt.dev.shell.OophmSessionHandler.loadM odule(OophmSessionHandler.java:200)
at com.google.gwt.dev.shell.BrowserChannelServer.proc essConnection(BrowserChannelServer.java:525)
at com.google.gwt.dev.shell.BrowserChannelServer.run( BrowserChannelServer.java:363)
at java.lang.Thread.run(Thread.java:662)

当我删除<inherits name="com.smartgwt.SmartGwt"/>时 来自myprojet.gwt.xml file项目工作正常


XML

<inherits name='com.google.gwt.user.User' />


<inherits name='com.google.gwt.user.theme.clean.Clean' />

<!-- Other module inherits -->

<inherits name="com.smartgwt.SmartGwt"/>
<!-- Specify the app entry point class. -->
<entry-point class='com.example.client.MyProjet' />

<!-- Specify the paths for translatable code -->
<source path='client' />
<source path='shared' />

1 个答案:

答案 0 :(得分:3)

您的gwt.xml似乎是正确的。

GWT编译和清除浏览器缓存应该可以正常工作。