来自非gwt项目的参考gwt项目

时间:2014-04-28 20:57:00

标签: java xml eclipse gwt ant

我有两个项目,一个是gwt项目,一个是非gwt项目。我可以在非gwt项目中使用gwt jar文件,它工作正常。但是,我想直接引用gwt项目,所以我可以调试非gwt项目里面的gwt项目java文件。所以我做了以下步骤,但仍然收到错误:

  1. 在非gwt项目构建路径中,在构建路径上添加gwt项目。
  2. 在gwt项目中,有一个gwtProject.gwt.xml文件。 在非gwt项目中,有一个nonGwtProject.gwt.xml文件。 所以我复制了从gwtProject.gwt.xml到nonGwtProject.gwt.xml的所有内容。
  3. 然而,当我构建gwt模块时,我得到了以下错误。

    R] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
    

    我注意到有一条如下所示的源路径。它们应该在gwt项目中,我的问题是如何从非gwt项目的xml文件中引用源路径?

    <source path="web/client"/>
    <source path="util/common"/> 
    

    非gwt项目结构:

    com.abc.reports -- nonGwtProject.gwt.xml is under this folder
    

    gwt项目结构:

    com.abc.toolkit -- gwtProject.gwt.xml is under this folder
    com.abc.toolkit.web.client
    com.abc.toolkit.util.common
    

    我应该为源路径指定哪条路径?

0 个答案:

没有答案