1

我正在尝试在 GWT 项目中开始使用 GWTQuery。

  • 我在 Eclipse 中创建了示例 GWT 项目
  • 将 gwtquery-1.3.2.jar 添加到 war/WEB-INF/lib
  • 编辑了 Myproject.gwt.xml(添加了 <inherits name='com.google.gwt.query.Query'/>)

当我编译项目时,它会写入很多延迟错误,但最后会出现:

   Scanning for additional dependencies: jar:file:/C:/eclipseBacklog/Backlog/war/WEB-INF/lib/gwtquery-1.3.2.jar!/com/google/gwt/query/client/GQuery.java
      Computing all possible rebind results for 'com.google.gwt.query.client.GQuery'
         Rebinding com.google.gwt.query.client.GQuery
            Checking rule <replace-with class='com.google.gwt.query.client.impl.SelectorEngineNativeIE8'/>
               [ERROR] Errors in 'jar:file:/C:/eclipseBacklog/Backlog/war/WEB-INF/lib/gwtquery-1.3.2.jar!/com/google/gwt/query/client/Properties.java'
                  [ERROR] Line 20: The import com.google.gwt.core.shared cannot be resolved
                  [ERROR] Line 39: GWT cannot be resolved
               [ERROR] Unable to find type 'com.google.gwt.query.client.GQuery'
                  [ERROR] Hint: Previous compiler errors may have made this type unavailable
                  [ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
   [ERROR] Errors in 'jar:file:/C:/eclipseBacklog/Backlog/war/WEB-INF/lib/gwtquery-1.3.2.jar!/com/google/gwt/query/client/GQuery.java'
      [ERROR] Line 1483:  Failed to resolve 'com.google.gwt.query.client.GQuery' via deferred binding

我做错了什么?

4

1 回答 1

2

检查您的 gwt 版本,您必须更新到 GWT-2.5.x。因为这个 gquery 的工件对它有不希望的依赖。2.5有两个GWT.java类,gquerycom.google.gwt.core.shared错误的依赖新的。

在 gwtquery 站点上打开一个问题,因为此版本也应该适用于较旧的 gwt 版本。

您还可以将 gquery 版本更改为 1.3.1 或 1.4.0-SNAPSHOT

更新:我刚刚弃用了 1.3.2 版本,并发布了1.3.3版本,它与以前的 gwt 版本一起编译

于 2013-04-05T22:24:46.183 回答