-1

我正在使用 GWT 和 Google App Engine ...

我使用 com.google.gwt.core.ext.Generator 在客户端加载动态 Presenter-Classes。

当我在本地测试它时它可以工作。但不在谷歌 App Engine 上... :-(

PresenterFactory factory = (PresenterFactory) GWT.create(ReflectiveFactory.class);
IDynamicPresenter p =  factory.newInstance("ch...NewsPresenter");

这应该在运行时绑定类。

我实现了以下代码: http: //programmatica.blogspot.com/2007/10/classfornamefullyqualifiedclassnamenewi.html

是否可以在 GAE 上使用 com.google.gwt.core.ext.Generator?

最亲切的问候

山姆

4

1 回答 1

0

我在没有运行时类转换的情况下编译了它——它可以工作!

问题是 IE-cache.html 文件中的 ClassCasting

-XdisableCastChecking 作为编译器标志

于 2012-05-04T08:01:17.133 回答