-1

私はGWTとGoogleAppEngineを使用しています...

com.google.gwt.core.ext.Generatorを使用して、クライアント側で動的なプレゼンタークラスをロードします。

ローカルでテストすると機能します。しかし、グーグルアプリエンジンではありません... :-(

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 に答える