2

我已按照 Eclipse 中 GWT 的 JQueryUI 指南进行操作,但出现错误:

The type com.google.gwt.query.client.GQuery cannot be resolved. It is indirectly referenced from required .class files

不过,我不太确定我是否正确地做所有事情。我从未导入过 JQueryUI(我不知道如何正确导入非 jar 文件),但我认为 Google CDN 网络会处理这个问题,不是吗?我遵循的教程在这里:

http://code.google.com/p/gwtquery-ui/wiki/GettingStarted

我尝试通过右键单击并选择转换为 Maven 将我的文件转换为 Maven。这创建了一个 POM.xml 文件。我将此添加到 pom 文件中:

        <repositories>
<repository>
  <id>gwtquery-ui-repository</id>
  <url>http://gwtquery-ui.googlecode.com/svn/mavenrepo</url>
</repository>

      <dependencies>
<dependency>
  <groupId>com.google.gwt</groupId>
  <artifactId>gwtquery-ui</artifactId>
  <version>r146</version>
  <scope>provided</scope>
</dependency>

我在 my.gwt.xml 文件中有 JQueryUI 部分:

<inherits name='gwtquery.plugins.UiGoogleCdn' /> 
<inherits name='gwtquery.plugins.UiEmbedded' />

任何提示都将不胜感激!

4

1 回答 1

2

我发现了我的错误。您需要先安装和设置 GWTQuery,然后才能使用 GWTQueryUI。我以为它是独立的,但事实并非如此。

于 2012-08-07T19:44:40.533 回答