Tag: intellij idea requestfactory

GWT编译器无法在IntelliJ IDEA中找到依赖模块的源

我正在使用IDEA 117.216 如果CrazyCoder看到这个问题会很棒:) 你们如何引用另一个模块,以便GWT编译器看到它? 当我说模块时,我指的是IntelliJ IDEA术语中的模块。 这是我的情况。 我有中间项目(GAE + GWT + RequestFactory)。 现在我在我的项目中创建了Android模块。 这个想法是它将使用C2DM并通过RequestFactory(RF)与服务器通信。 所以我自然而然地在我的项目中创建了第3个模块并移动了所有RF代理和接口,因此我可以从GWT / GAE模块和Android模块中引用它。 Android模块喜欢它,但GWT编译器不喜欢它。 它找不到我移动到“共享”模块的类。 给我错误,例如: [ERROR] Errors in ‘file:/C:/work/sideprojects/courierapp/src/com/blah/courierApp/client/admin/AdminPage.java’ [ERROR] Line 77: No source code is available for type com.blah.shared.proxies.OrderProxy; did you forget to inherit a required module? [ERROR] Line 81: No source code is available for type com.blah.shared.factories.AdminRequestFactory; did […]