Eclipse GWT“没有引用的CSS文件”

时间:2013-02-04 00:17:33

标签: java css eclipse gwt

我正在使用Eclipse Juno Service Release 1,安装了最新的GWT Designer插件并运行更新。当我在GWT Design中并且在窗口小部件属性的StyleName行中选择CSS按钮时,我收到消息“没有从模块或HTML引用的CSS文件”。

我的gwt.xml是:

<module>
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.google.gwt.user.theme.standard.Standard"/>
<entry-point class="org.AwardTracker.client.AwardTracker"/>
<stylesheet src="org.AwardTracker.AwardTracker.css"/>

<!--  servelet context - path is arbitrary, but must match up with the rpc init inside java class -->
<!--  Tomcat will listen for this from the server and waits for rpc request in this context -->
<servlet class="org.AwardTracker.server.MySQLConnection" path="/MySQLConnection" />
    <inherits name="com.google.gwt.user.theme.standard.Standard"/>
    <inherits name="com.google.gwt.user.theme.chrome.Chrome"/>
    <inherits name="com.google.gwt.user.theme.dark.Dark"/>
</module>

我的CSS位于org.AwardTracker中(直接位于gwt.xml文件上方)。

我用Google搜索的所有提示都是更新GWT Designer。这些提示都已有几年了,我有最新版本。

知道我做错了吗?

3 个答案:

答案 0 :(得分:2)

你必须先在war文件夹bcoz css文件中查找你的css文件,并在war文件夹中存在html文件,而不是检查html文件中的链接

 <link type="text/css" rel="stylesheet" href="abc.css">

答案 1 :(得分:0)

由于路径,似乎找不到该文件。您已经在xml文件中,请尝试

<stylesheet src="AwardTracker.css"/>

希望这会有所帮助。

答案 2 :(得分:0)

您需要正确使用项目包和引用。您可以按照此处提供的有关项目/文件组织的解决方案 - Editing CSS in Gwt WindowBuilder