我正在使用带有 GWT 2.3 的 GWTP(Google 的 MVP 框架)。我想与我的演示者一起使用 GWT 代码拆分。
我知道@ProxyCodeSplit
演示者中的注释。像下面
@ProxyCodeSplit
@UseGatekeeper(LoggedInGatekeeper.class)
public interface MyProxy extends Proxy<MainPagePresenter> {
}
这足够了吗?或者我是否需要挖掘 GWT Code Splitting 提供A call to GWT.runAsync
的类似Here