我有一个保存在 MarkLogic 中的文档,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<user>
<userName>Vikram</userName>
<password>password</password>
<firstName>Vikram</firstName>
<lastName>Swaminathan</lastName>
<emailAddress>vikram@gmail.com</emailAddress>
</user>
与弃用(KeyValueQueryDefinition)一起使用的代码如下所示:
// create a manager for searching
QueryManager queryMgr = client.newQueryManager();
KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");
// create a handle for the search results
SearchHandle resultsHandle = new SearchHandle();
// run the search
queryMgr.search(query, resultsHandle);
// Get the list of matching documents in this page of results
MatchDocumentSummary[] results = resultsHandle.getMatchResults();
// Iterate over the results
for (MatchDocumentSummary result: results) {
// get the list of match locations for this result
MatchLocation[] locations = result.getMatchLocations();
System.out.println("Matched "+locations.length+" locations in "+result.getUri()+":");
// iterate over the match locations
for (MatchLocation location: locations) {
// iterate over the snippets at a match location
for (MatchSnippet snippet : location.getSnippets()) {
boolean isHighlighted = snippet.isHighlighted();
if (isHighlighted)
System.out.print("[");
System.out.print(snippet.getText());
if (isHighlighted)
System.out.print("]");
}
System.out.println();
}
System.out.println();
}
}
我得到的输出是:
Matched 1 locations in user/vikram:
[vikram@gmail.com]
我从下面的链接中获得了帮助,使其与新的 Marklogic 9 版本一起工作,因为KeyValueQueryDefinition
最新版本已弃用。
是否有变体来更改此处的KeyValueQueryDefinition 代码
KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");
使用 QBE 搜索以下链接中提到的文档:
关于如何解决这个问题的任何建议?