我是使用 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_Java和http://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 客户端的其他方法,但找不到适合初学者的清晰指南或教程。