我在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
在最新版本上已弃用。
是否有Variant来更改 KeyValueQueryDefinition 代码
KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");
使用QBE搜索下面链接中提到的文档:
有关如何处理此事的任何建议吗?
答案 0 :(得分:2)
我可能不明白这个问题。你不能按照link you provided中的说明进行操作吗?
String rawXMLQuery =
"<q:qbe xmlns:q='http://marklogic.com/appservices/querybyexample'>"+
"<q:query>" +
"<emailAddress>vikram@gmail.com</emailAddress>" +
"</q:query>" +
"</q:qbe>";
StringHandle rawHandle =
new StringHandle(rawXMLQuery).withFormat(Format.XML);
RawQueryByExampleDefinition query =
queryMgr.newRawQueryByExampleDefinition(rawHandle);