3

我的 GWT 应用程序在开发模式下工作,但是当我编译时出现此错误:

[ERROR] Errors in generated://F1C9BA113391FC353E7321372D77396D/com/mygwtapp/client/gin/ClientGinjectorImpl.java'
[ERROR] Line 64:  Rebind result 'com.mygwtapp.client.core.presenter.ResponsePresenter.MyView' must be a class
[ERROR] Line 2319:  Rebind result 'com.mygwtapp.client.core.presenter.MainPagePresenter.MyView' must be a class
[ERROR] Cannot proceed due to previous errors

我正在使用 GWT 2.4.0 和 GwtPlatform。

4

2 回答 2

2

这表明您已经注入MainPagePresenter.MyViewResponsePresenter.MyView但未绑定到具体类型。它在开发模式下工作(我假设您只有一个模块)但未编译的事实表明 ginjector 正在寻找您在运行开发模式时没有碰到的注入点。

确保这两个都绑定在您的 ginjector 中(或者您replace-with为它们定义了规则),或者删除对它们的引用。

(如果一切正常,考虑发布一些代码,比如你的 ginjector 接口,也许是生成的代码,你的模块等)

于 2012-04-18T03:09:10.833 回答
0

请参阅文档:将所有内容绑定在一起。您必须将演示者、视图和代理绑定在一起。尽管如此,我很惊讶它在开发模式下工作。

于 2012-04-18T10:47:21.613 回答