3

GWT 2.3でGWTP(GoogleのMVPフレームワーク)を使用しています。プレゼンターと一緒にGWTコード分割を使用したいと思います。

@ProxyCodeSplitプレゼンターの注釈について知っています。以下のように

@ProxyCodeSplit
@UseGatekeeper(LoggedInGatekeeper.class)
public interface MyProxy extends Proxy<MainPagePresenter> {
}

これで十分ですか?または、ここA call to GWT.runAsyncのように提供するGWTコード分割を掘り下げる必要がありますか?

4

1 に答える 1

5

GWT.runAsyncいいえ、対応するプレゼンターが表示されるたびに、GWTP が呼び出しを処理します。
ただし、次のことを必ず使用AsyncProviderしてくださいGinjector

@GinModules({ MyModule.class })
public interface MyGinjector extends Ginjector {
  PlaceManager getPlaceManager();
  EventBus getEventBus();
  AsyncProvider<MainPagePresenter> getMainPagePresenter();
}
于 2011-12-28T15:07:32.743 に答える