假设我的gwt项目中有2个模块,它的结构如下

src
- main
 - java
     module1.gwt.xml
     module2.gwt.xml
     - client
          - module1
               - stuff
          - module2
               - stuff


并在每个模块xml文件上

<module rename-to='module1'>
       ... their own entry point and stuff..
</module>

<module rename-to='module2'>
       ... their own entry point and stuff..
</module>


因此,在编译时,我将得到2个nocache.js文件,分别是“ module1.nocache.js”和“ module2.nocache.js”。通过将其中2个包含到HTML页面中,可以很好地工作。

我的问题如下,有什么办法可以编译多个模块并获得包含其中两个模块的单个nocache.js文件?

谢谢 ! :-D

最佳答案

更改项目结构应该可以解决您的问题。

尝试这样的事情:

src
- main
 - java
  - module1
     module1.gwt.xml
     - client
       - stuff
  - module2
     module2.gwt.xml
     - client
       - stuff


您必须定义一个模块来启动您的应用程序。第二个模块应该被第一个继承。

10-04 17:53