我正在使用 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?
最亲切的问候
山姆