0

我是使用 eXist-db 的新手。使用 Java/Groovy 我正在尝试(没有运气)从我创建的集合中获取数据:/db/apps/compositions.

其中/db/apps/compositions有几个类似于此的 XML 文档:

<version xmlns="http://schemas.openehr.org/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ORIGINAL_VERSION">
  ...
  <data xsi:type="COMPOSITION" archetype_node_id="openEHR-EHR-COMPOSITION.signos.v1">
    <name>
      <value>xxxxx</value>
    </name>
    ...
  </data>
</version>

我在客户端代码中使用 XQJ API。我尝试修改示例代码(来自http://en.wikipedia.org/wiki/XQuery_API_for_Javahttp://xqj.net/exist/):

XQDataSource xqs = new ExistXQDataSource();
xqs.setProperty("serverName", "localhost");
xqs.setProperty("port", "8080");

XQConnection conn = xqs.getConnection("user","pass");

XQExpression expr = conn.createExpression();

XQResultSequence result = expr.executeQuery(
  "for $n in fn:collection('/db/apps/compositions')//data " +
  "return fn:data($n/name/value)"); // execute an XQuery expression

// Process the result sequence iteratively
while (result.next()) {
  // Print the current item in the sequence
  System.out.println("Product name: " + result.getItemAsString(null));
}

// Free all resources created by the connection
conn.close();

我希望从/db/apps/compositions集合中的所有 XML 文档中获取 xxxxx 文本,但我没有得到任何结果,也没有抛出异常。

有任何想法吗?

非常感谢!

顺便说一句:我试图找到实现 java 客户端的其他方法,但找不到适合初学者的清晰指南或教程。

4

1 回答 1

4

您遇到的问题都是关于名称空间的;您的元素位于默认命名空间中,因此您需要在查询中定义该命名空间。

xquery version "3.0";

declare default element namespace "http://schemas.openehr.org/v1";

for $n in fn:collection('/db/apps/compositions')//data

return fn:data($n/name/value)

阅读更多内容,例如技术维基

一般来说,我建议先在优秀的eXide IDE 中测试查询,然后再将它们合并到代码中。IDE 为您提供有关查询结果的快速反馈,因此您可以对查询进行一些操作。

注意写

*:data

可能会减慢对大型数据集的查询。

于 2014-11-24T09:12:52.987 回答