有一个用 GWT 编写的应用程序,它由许多模块组成。有一个主模块,它是应用程序的“入口点”。让我们称之为Foo-Main并且有几个额外的模块:Foo-Styles,Foo-Icons等 - 它们中的每一个都只有一些应该在应用程序中可用的内容src/main/webapp
(如文件)。.css
我正试图让它在 IntelliJ IDEA 中工作。
我创建了一个工件,src/main/webapp
作为源文件夹添加,我将其他模块的每个GWT 编译器输出添加到工件中。当我尝试运行 GWT 开发模式时,来自Foo-Main模块的内容可用,但来自其他模块的内容不可用 - 我收到 404 错误,例如在样式表上src/main/webapp
。
我在配置中缺少什么?
编辑:
评论中要求的更多细节:
[WARN] 404 - GET /Styles/gxt/css/gxt-all.css (127.0.0.1) 1412 bytes
Request headers
Host: 127.0.0.1:8888
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1
Accept: text/css,*/*;q=0.1
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Referer: http://127.0.0.1:8888/Foo-Main/index.html?gwt.codesvr=127.0.0.1:9997
Foo-Stylessrc/main/webapp/
中的内容如下所示:
src/
main/
webapp/
...
gxt/
chart/
...
css/
gxt-all.css
gxt-gray.css
...
...
此外,在Foo-Main中,它看起来像这样:
src/
main/
webapp/
Foo-Main/
...
Styles/
foo-main.css
...
help.html
index.html