替换MarkLogic中不推荐使用的KeyValueQueryDefinition以使用“按示例查询”

时间:2017-11-08 09:15:41

标签: java marklogic query-by-example marklogic-9

我在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在最新版本上已弃用。

  

https://docs.marklogic.com/guide/relnotes/chap4#id_22988

是否有Variant来更改 KeyValueQueryDefinition 代码

 KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
        query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");

使用QBE搜索下面链接中提到的文档:

  

https://docs.marklogic.com/guide/java/searches#id_69351

有关如何处理此事的任何建议吗?

1 个答案:

答案 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);