【问题标题】:Replace Deprecated KeyValueQueryDefinition in MarkLogic to use Query By Example替换 MarkLogic 中已弃用的 KeyValueQueryDefinition 以使用 Query By Example
【发布时间】:2017-11-08 09:15:41
【问题描述】:

我有一个保存在 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

这里有没有变体来改变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

关于如何解决这个问题的任何建议??

【问题讨论】:

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


    【解决方案1】:

    我可能不明白这个问题。你不按照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);
    

    【讨论】:

      猜你喜欢
      • 2021-10-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2010-09-10
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多