我在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' />


任何提示将不胜感激!

最佳答案

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

关于java - GWT的JQueryUI,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11852618/

10-11 02:27