查詢產生器 API query-builder-api
資產共用查詢產生器的功能透過Java™ API和REST API公開。 本節將說明這些API。
伺服器端查詢產生器( QueryBuilder
)接受查詢說明、建立並執行XPath查詢、選擇性地篩選結果集,以及視需要擷取Facet。
查詢描述只是一組述詞(Predicate
)。 範例包括全文檢索述詞,其對應至XPath中的jcr:contains()
函式。
對於每個述詞型別,都有一個評估器元件(PredicateEvaluator
)知道如何處理XPath、篩選和Facet擷取的特定述詞。 可輕鬆建立自訂評估器,並透過OSGi元件執行階段插入。
REST API透過HTTP提供相同功能的存取權,且回應會以JSON傳送。
Gem講座 gem-session
Adobe Experience Manager (AEM) Gems是Adobe專家提供的一系列深入探討Adobe Experience Manager的技術影片。 此查詢產生器專用會議有助於工具概述和使用。
範例查詢 sample-queries
這些範例以Java™屬性樣式標籤法提供。 若要搭配Java™ API使用,請使用Java™ HashMap
,如下面的API範例所示。
對於QueryBuilder
JSON Servlet,每個範例都包含本機CQ安裝的連結(在預設位置http://localhost:4502
)。 在使用這些連結之前,請登入您的CQ執行個體。
p.limit=-1
傳回所有結果 returning-all-results
下列查詢 傳回10個結果 (確切地說,最多傳回10個),但會通知您可用的 點選數::
http://localhost:4502/bin/querybuilder.json?path=/content&1_property=sling:resourceType&1_property.value=foundation/components/text&1_property.operation=like&orderby=path
path=/content
1_property=sling:resourceType
1_property.value=foundation/components/text
1_property.operation=like
orderby=path
相同的查詢(使用引數p.limit=-1
)將 傳回所有結果 (根據您的執行個體,這可能是一個很高的數字):
http://localhost:4502/bin/querybuilder.json?path=/content&1_property=sling:resourceType&1_property.value=foundation/components/text&1_property.operation=like&p.limit=-1&orderby=path
path=/content
1_property=sling:resourceType
1_property.value=foundation/components/text
1_property.operation=like
p.limit=-1
orderby=path
使用p.guessTotal傳回結果 using-p-guesstotal-to-return-the-results
p.guessTotal
引數的目的是傳回適當數目的結果,這些結果可以透過結合最小可行的p.offset和p.limit值來顯示。 使用此引數的優點是在大型結果集中改善效能。 這樣可避免計算完整總計(例如,呼叫result.getSize())和讀取整個結果集,一直最佳化到Oak引擎和索引。 當有100,000個結果(包括執行時間和記憶體使用量)時,這可能有顯著差異。
此引數的缺點是使用者看不到確切總計。 但是您可以設定最小值,例如p.guessTotal=1000,這樣它一律會讀取到1000,所以您可以取得較小結果集的精確總計,但是如果超過此值,您只能顯示「等等」。
將p.guessTotal=true
新增至下列查詢以檢視其運作方式:
http://localhost:4502/bin/querybuilder.json?path=/content&1_property=sling:resourceType&1_property.value=foundation/components/text&1_property.operation=like&p.guessTotal=true&orderby=path
path=/content
1_property=sling:resourceType
1_property.value=foundation/components/text
1_property.operation=like
p.guessTotal=true
orderby=path
查詢傳回10
個結果的p.limit
預設值(含0
位移):
"success": true,
"results": 10,
"total": 10,
"more": true,
"offset": 0,
自AEM 6.0 SP2起,您也可以使用數值來計數至自訂結果數量上限。 使用與上述相同的查詢,但將p.guessTotal
的值變更為50
:
http://localhost:4502/bin/querybuilder.json?path=/content&1_property=sling:resourceType&1_property.value=foundation/components/text&1_property.operation=like&p.guessTotal=50&orderby=path
它會傳回一個數字,預設限製為10個結果,位移為0,但最多只會顯示50個結果:
"success": true,
"results": 10,
"total": 50,
"more": true,
"offset": 0,
實作分頁 implementing-pagination
依預設,查詢產生器也會提供點選次數。 根據結果大小,由於確定正確計數涉及檢查每個存取控制結果,因此這可能需要很長的時間。 總計主要用於為一般使用者UI實作分頁。 由於判斷確切計數可能會很慢,因此建議使用guessTotal功能來實施分頁。
例如,UI可以調整以下方法:
-
取得並顯示總點選數的精確計數(SearchResult.getTotalMatches()或querybuilder.json回應中的總計)小於或等於100;
-
呼叫Query Builder時將
guessTotal
設為100。 -
回應可能會產生下列結果:
total=43
,more=false
— 表示點選總數為43。 UI可以在第一頁顯示最多十個結果,並為接下來的三個頁面提供分頁功能。 您也可以使用此實作來顯示描述性文字,例如 「找到43個結果」。total=100
,more=true
— 表示點選總數大於100,而且不知道確切的計數。 UI最多可在第一頁中顯示十頁,並為接下來的10頁提供分頁。 您也可以使用此項來顯示 「找到100個以上的結果」 之類的文字。 當使用者進入下一頁時,呼叫查詢產生器將增加guessTotal
的限制,也會增加offset
和limit
引數的限制。
guessTotal
應該用於UI需要使用無限捲動以避免Query Builder判斷確切點選計數的情況。
尋找jar檔案並排序,最新的先排序 find-jar-files-and-order-them-newest-first
http://localhost:4502/bin/querybuilder.json?type=nt:file&nodename=*.jar&orderby=@jcr:content/jcr:lastModified&orderby.sort=desc
type=nt:file
nodename=*.jar
orderby=@jcr:content/jcr:lastModified
orderby.sort=desc
尋找所有頁面,並依上次修改時間排序 find-all-pages-and-order-them-by-last-modified
http://localhost:4502/bin/querybuilder.json?type=cq:Page&orderby=@jcr:content/cq:lastModified
type=cq:Page
orderby=@jcr:content/cq:lastModified
尋找所有頁面,並依上次修改時間(但降序)排序 find-all-pages-and-order-them-by-last-modified-but-descending
http://localhost:4502/bin/querybuilder.json?type=cq:Page&orderby=@jcr:content/cq:lastModified&orderby.sort=desc]
type=cq:Page
orderby=@jcr:content/cq:lastModified
orderby.sort=desc
全文檢索搜尋,依分數排序 fulltext-search-ordered-by-score
http://localhost:4502/bin/querybuilder.json?fulltext=Management&orderby=@jcr:score&orderby.sort=desc
fulltext=Management
orderby=@jcr:score
orderby.sort=desc
搜尋以特定標籤標籤的頁面 search-for-pages-tagged-with-a-certain-tag
http://localhost:4502/bin/querybuilder.json?type=cq:Page&tagid=marketing:interest/product&tagid.property=jcr:content/cq:tags
type=cq:Page
tagid=marketing:interest/product
tagid.property=jcr:content/cq:tags
如果您知道明確的標籤ID,請使用範例中的tagid
述詞。
為標籤標題路徑使用tag
述詞(不含空格)。
在上一個範例中,由於您正在搜尋頁面( cq:Page
節點),請使用該節點的tagid.property
述詞相對路徑,即jcr:content/cq:tags
。 依預設,tagid.property
只是cq:tags
。
在多個路徑下搜尋(使用群組) search-under-multiple-paths-using-groups
http://localhost:4502/bin/querybuilder.json?fulltext=Management&group.1_path=/content/geometrixx/en/company/management&group.2_path=/content/geometrixx/en/company/bod&group.p.or=true
fulltext=Management
group.p.or=true
group.1_path=/content/geometrixx/en/company/management
group.2_path=/content/geometrixx/en/company/bod
此查詢使用 群組 (名為" group
"),其作用是在查詢中分隔子運算式,就像括弧在較標準符號中的作用一樣。 例如,先前的查詢可能會以更熟悉的樣式表示:
"Management" and ("/content/geometrixx/en/company/management" or "/content/geometrixx/en/company/bod")
在範例中的群組內,path
述詞使用多次。 若要區分和排序述詞的兩個執行個體(某些述詞需要排序),您必須為述詞加上前置詞 N _ where
N 為排序索引。 在上一個範例中,產生的述詞是1_path
和2_path
。
p.or
中的p
是特殊分隔符號,表示後面的(在此例中是or
)是群組的 引數,與群組的子述詞(例如1_path
)相反。
如果未指定p.or
,則所有述詞都將一起進行AND運算,也就是說,每個結果都必須滿足所有述詞。
搜尋屬性 search-for-properties
您在這裡使用cq:template
屬性搜尋指定範本的所有頁面:
http://localhost:4502/bin/querybuilder.json?property=cq%3atemplate&property.value=%2fapps%2fgeometrixx%2ftemplates%2fhomepage&type=cq%3aPageContent
type=cq:PageContent
property=cq:template
property.value=/apps/geometrixx/templates/homepage
這有一個缺點,即傳回的是頁面的jcr:content
節點,而不是頁面本身。 若要解決此問題,您可以依相對路徑進行搜尋:
http://localhost:4502/bin/querybuilder.json?property=jcr%3acontent%2fcq%3atemplate&property.value=%2fapps%2fgeometrixx%2ftemplates%2fhomepage&type=cq%3aPage
type=cq:Page
property=jcr:content/cq:template
property.value=/apps/geometrixx/templates/homepage
搜尋多個屬性 search-for-multiple-properties
多次使用屬性述詞時,您必須再次新增數字首碼:
http://localhost:4502/bin/querybuilder.json?1_property=jcr%3acontent%2fcq%3atemplate&1_property.value=%2fapps%2fgeometrixx%2ftemplates%2fhomepage&2_property=jcr%3acontent%2fjcr%3atitle&2_property.value=English&type=cq%3aPage
type=cq:Page
1_property=jcr:content/cq:template
1_property.value=/apps/geometrixx/templates/homepage
2_property=jcr:content/jcr:title
2_property.value=English
搜尋多個屬性值 search-for-multiple-property-values
若要在搜尋屬性( "A" or "B" or "C"
)的多個值時避免大型群組,您可以為property
述詞提供多個值:
http://localhost:4502/bin/querybuilder.json?property=jcr%3atitle&property.1_value=Products&property.2_value=Square&property.3_value=Events
property=jcr:title
property.1_value=Products
property.2_value=Square
property.3_value=Events
針對多值屬性,您也可以要求有多個值符合( "A" and "B" and "C"
):
http://localhost:4502/bin/querybuilder.json?property=jcr%3atitle&property.and=true&property.1_value=test&property.2_value=foo&property.3_value=bar
property=jcr:title
property.and=true
property.1_value=test
property.2_value=foo
property.3_value=bar
精簡傳回的專案 refining-what-is-returned
依預設,QueryBuilder JSON Servlet會傳回搜尋結果中每個節點的預設屬性集(例如路徑、名稱和標題)。 若要取得傳回屬性的控制權,您可以執行下列任一項作業:
指定
p.hits=full
在這種情況下,每個節點都會包含所有屬性:
http://localhost:4502/bin/querybuilder.json?p.hits=full&property=jcr%3atitle&property.value=Triangle
property=jcr:title
property.value=Triangle
p.hits=full
使用
p.hits=selective
並指定要取得的屬性
p.properties
以空格分隔:
http://localhost:4502/bin/querybuilder.json?p.hits=selective&property=jcr%3atitle&property.value=Triangle
http://localhost:4502/bin/querybuilder.json?
p.hits=selective&p.properties=sling%3aresourceType%20jcr%3aprimaryType&property=jcr%3atitle&property.value=Triangle
property=jcr:title
property.value=Triangle
p.hits=selective
p.properties=sling:resourceType jcr:primaryType
另一個您可以做的事情是在QueryBuilder回應中包含子節點。 若要這麼做,您必須指定
p.nodedepth=n
其中n
是您希望查詢傳回的層級數。 若要傳回子節點,它必須由屬性選取器指定
p.hits=full
範例:
http://localhost:4502/bin/querybuilder.json?p.hits=full&p.nodedepth=5&property=jcr%3atitle&property.value=Triangle
property=jcr:title
property.value=Triangle
p.hits=full
p.nodedepth=5
更多述詞 morepredicates
如需更多述詞,請參閱查詢產生器述詞參考頁面。
您也可以檢查PredicateEvaluator
類別的Javadoc。 這些類別的Javadoc包含您可以使用的屬性清單。
類別名稱的前置詞(例如,SimilarityPredicateEvaluator
中的" similar
")是類別的 主體屬性。 此屬性也是要在查詢中使用的述詞名稱(小寫)。
對於這類主體屬性,您可以縮短查詢並使用" similar=/content/en
"而不是完全合格的變體" similar.similar=/content/en
"。 類別的所有非主要屬性都必須使用完整格式。
查詢產生器API使用範例 example-query-builder-api-usage
String fulltextSearchTerm = "Geometrixx";
// create query description as hash map (simplest way, same as form post)
Map<String, String> map = new HashMap<String, String>();
// create query description as hash map (simplest way, same as form post)
map.put("path", "/content");
map.put("type", "cq:Page");
map.put("group.p.or", "true"); // combine this group with OR
map.put("group.1_fulltext", fulltextSearchTerm);
map.put("group.1_fulltext.relPath", "jcr:content");
map.put("group.2_fulltext", fulltextSearchTerm);
map.put("group.2_fulltext.relPath", "jcr:content/@cq:tags");
// can be done in map or with Query methods
map.put("p.offset", "0"); // same as query.setStart(0) below
map.put("p.limit", "20"); // same as query.setHitsPerPage(20) below
Query query = builder.createQuery(PredicateGroup.create(map), session);
query.setStart(0);
query.setHitsPerPage(20);
SearchResult result = query.getResult();
// paging metadata
int hitsPerPage = result.getHits().size(); // 20 (set above) or lower
long totalMatches = result.getTotalMatches();
long offset = result.getStartIndex();
long numberOfPages = totalMatches / 20;
//Place the results in XML to return to client
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.newDocument();
//Start building the XML to pass back to the AEM client
Element root = doc.createElement( "results" );
doc.appendChild( root );
// iterating over the results
for (Hit hit : result.getHits()) {
String path = hit.getPath();
//Create a result element
Element resultel = doc.createElement( "result" );
root.appendChild( resultel );
Element pathel = doc.createElement( "path" );
pathel.appendChild( doc.createTextNode(path ) );
resultel.appendChild( pathel );
}
使用查詢產生器(JSON) Servlet透過HTTP執行的相同查詢:
http://localhost:4502/bin/querybuilder.json?path=/content&type=cq:Page&group.p.or=true&group.1_fulltext=Geometrixx&group.1_fulltext.relPath=jcr:content&group.2_fulltext=Geometrixx&group.2_fulltext.relPath=jcr:content/@cq:tags&p.offset=0&p.limit=20
儲存和載入查詢 storing-and-loading-queries
查詢可以儲存在存放庫中,以便您稍後使用。 QueryBuilder
提供具有以下簽章的'' storeQuery
'方法:
void storeQuery(Query query, String path, boolean createFile, Session session) throws RepositoryException, IOException;
使用QueryBuilder#storeQuery
方法時,指定的Query
會根據createFile
引數值,以檔案或屬性的形式儲存在儲存庫中。 下列範例說明如何將路徑/mypath/getfiles
的Query
儲存為檔案:
builder.storeQuery(query, "/mypath/getfiles", true, session);
使用QueryBuilder#loadQuery
方法可以從存放庫載入任何先前儲存的查詢:
Query loadQuery(String path, Session session) throws RepositoryException, IOException
例如,儲存至路徑/mypath/getfiles
的Query
可透過下列程式碼片段載入:
Query loadedQuery = builder.loadQuery("/mypath/getfiles", session);
測試和偵錯 testing-and-debugging
若要解決和偵錯QueryBuilder查詢,您可以使用位於的QueryBuilder Debugger主控台
http://localhost:4502/libs/cq/search/content/querydebug.html
或者,您也可以選擇位於的querybuilder json servlet
http://localhost:4502/bin/querybuilder.json?path=/tmp
(path=/tmp
只是一個範例)。
Recommendations的一般偵錯 general-debugging-recommendations
透過記錄取得可說明的XPath obtain-explain-able-xpath-via-logging
說明在開發週期期間針對目標索引集進行的 所有 查詢。
-
啟用QueryBuilder的DEBUG記錄檔以取得基礎的、可解釋的XPath查詢
- 導覽至https://<serveraddress>:<serverport>/system/console/slinglog。 在 DEBUG 為
com.day.cq.search.impl.builder.QueryImpl
建立記錄器。
- 導覽至https://<serveraddress>:<serverport>/system/console/slinglog。 在 DEBUG 為
-
為上述類別啟用DEBUG之後,記錄會顯示查詢產生器產生的XPath。
-
從相關QueryBuilder查詢的記錄專案複製XPath查詢,例如:
com.day.cq.search.impl.builder.QueryImpl XPath query: /jcr:root/content//element(*, cq:Page)[(jcr:contains(jcr:content, "Geometrixx") or jcr:contains(jcr:content/@cq:tags, "Geometrixx"))]
-
將XPath查詢貼入Explain查詢做為XPath以取得查詢計畫
透過Query Builder偵錯工具取得可說明的XPath obtain-explain-able-xpath-via-the-query-builder-debugger
- 使用AEM QueryBuilder Debugger產生可解釋的XPath查詢:
說明在開發週期期間針對目標索引集進行的 所有 查詢。
透過記錄取得可說明的XPath
-
啟用QueryBuilder的DEBUG記錄檔以取得基礎的、可解釋的XPath查詢
- 導覽至https://<serveraddress>:<serverport>/system/console/slinglog。 在 DEBUG 為
com.day.cq.search.impl.builder.QueryImpl
建立記錄器。
- 導覽至https://<serveraddress>:<serverport>/system/console/slinglog。 在 DEBUG 為
-
為上述類別啟用DEBUG之後,記錄會顯示查詢產生器產生的XPath。
-
從相關QueryBuilder查詢的記錄專案複製XPath查詢,例如:
com.day.cq.search.impl.builder.QueryImpl XPath query: /jcr:root/content//element(*, cq:Page)[(jcr:contains(jcr:content, "Geometrixx") or jcr:contains(jcr:content/@cq:tags, "Geometrixx"))]
-
將XPath查詢貼入Explain查詢做為XPath以取得查詢計畫
透過Query Builder偵錯工具取得可說明的XPath
- 使用AEM QueryBuilder Debugger產生可解釋的XPath查詢:
- 在Query Builder Debugger中提供查詢產生器查詢
- 執行搜尋
- 取得產生的XPath
- 將XPath查詢貼到Explain查詢中以XPath形式來取得查詢計畫
如需如何使用QueryBuilder對查詢進行偵錯的下拉式清單,請參閱下面的影片。
使用記錄功能偵錯查詢 debugging-queries-with-logging
執行測試和偵錯中所述的查詢時,查詢產生器實作的記錄輸出(INFO層級):
com.day.cq.search.impl.builder.QueryImpl executing query (predicate tree):
null=group: limit=20, offset=0[
{group=group: or=true[
{1_fulltext=fulltext: fulltext=Geometrixx, relPath=jcr:content}
{2_fulltext=fulltext: fulltext=Geometrixx, relPath=jcr:content/@cq:tags}
]}
{path=path: path=/content}
{type=type: type=cq:Page}
]
com.day.cq.search.impl.builder.QueryImpl XPath query: /jcr:root/content//element(*, cq:Page)[(jcr:contains(jcr:content, "Geometrixx") or jcr:contains(jcr:content/@cq:tags, "Geometrixx"))]
com.day.cq.search.impl.builder.QueryImpl no filtering predicates
com.day.cq.search.impl.builder.QueryImpl query execution took 69 ms
如果您的查詢使用述詞評估器來篩選,或使用比較器的自訂順序,這也會在查詢中註明:
com.day.cq.search.impl.builder.QueryImpl executing query (predicate tree):
null=group: [
{nodename=nodename: nodename=*.jar}
{orderby=orderby: orderby=@jcr:content/jcr:lastModified}
{type=type: type=nt:file}
]
com.day.cq.search.impl.builder.QueryImpl custom order by comparator: jcr:content/jcr:lastModified
com.day.cq.search.impl.builder.QueryImpl XPath query: //element(*, nt:file)
com.day.cq.search.impl.builder.QueryImpl filtering predicates: {nodename=nodename: nodename=*.jar}
com.day.cq.search.impl.builder.QueryImpl query execution took 272 ms