我在Ubuntu上运行Intellij Idea,我正在尝试一个GWT项目。我正在尝试StockWatcher项目,但每当我向它添加css类时,它都会抱怨它们找不到。 我搜索了同样的问题,但改变CSS的路径并没有帮助。有任何想法吗。 截图:
这是gwt.xml:
n
html文件:
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.7.0//EN"
"http://gwtproject.org/doctype/2.7.0/gwt-module.dtd">
<module rename-to='stockwatcher'>
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.google.gwt.user.theme.dark.Dark'/>
<entry-point class='com.google.gwt.sample.stockwatcher.client.StockWatcher'/>
<source path='client'/>
<source path='shared'/>
<!-- allow Super Dev Mode -->
<add-linker name="xsiframe"/>
</module>
是否需要其他信息,请告诉我。谢谢。