的功能 資產共用查詢產生器 會透過Java™ API和REST API公開。 本節將說明這些API。
伺服器端查詢產生器( QueryBuilder
)接受查詢說明、建立並執行XPath查詢、選擇性地篩選結果集,以及視需要擷取Facet。
查詢說明只是一組述詞(Predicate
)。 範例包括全文檢索述詞,其對應至 jcr:contains()
XPath中的函式。
對於每個述詞型別,都有一個計算器元件(PredicateEvaluator
)知道如何處理XPath、篩選和Facet擷取的特定述詞。 可輕鬆建立自訂評估器,並透過OSGi元件執行階段插入。
REST API透過HTTP提供相同功能的存取權,且回應會以JSON傳送。
QueryBuilder API是使用JCR API建置。 您也可以使用OSGi套件組合中的JCR API來查詢Adobe Experience Manager JCR。 如需詳細資訊,請參閱 使用JCR API的Adobe Experience Manager.
Adobe Experience Manager (AEM) Gems 是Adobe專家提供的一系列深入探討Adobe Experience Manager的技術影片。 此查詢產生器專用會議有助於工具概述和使用。
AEM Gem研討會 使用AEM查詢建立器輕鬆搜尋表單 以取得查詢產生器的詳細概觀。
這些範例以Java™屬性樣式標籤法提供。 若要搭配Java™ API使用,請使用Java™ HashMap
與下列API範例相同。
對於 QueryBuilder
JSON Servlet,每個範例都包含本機CQ安裝的連結(位於預設位置, http://localhost:4502
)。 在使用這些連結之前,請登入您的CQ執行個體。
依預設,查詢產生器json servlet最多可顯示10次點選。
新增以下引數可讓servlet顯示所有查詢結果:
p.limit=-1
若要在瀏覽器中檢視傳回的JSON資料,您可能會想要使用JSONView for Firefox之類的外掛程式。
下列查詢 傳回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
引數是傳回適當數目的結果,這些結果可透過結合最小可行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
查詢會傳回 p.limit
預設 10
結果和 0
offset:
"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,
依預設,查詢產生器也會提供點選次數。 根據結果大小,由於確定正確計數涉及檢查每個存取控制結果,因此這可能需要很長的時間。 總計主要用於為一般使用者UI實作分頁。 由於判斷確切計數可能會很慢,因此建議使用guessTotal功能來實施分頁。
例如,UI可以調整以下方法:
取得並顯示點選總數精確計數(SearchResult.getTotalMatches() 或querybuilder.json回應中的總計)小於或等於100;
設定 guessTotal
至100,同時呼叫查詢產生器。
回應可能會產生下列結果:
total=43
, more=false
— 表示總點選數為43。 UI可以在第一頁顯示最多十個結果,並為接下來的三個頁面提供分頁功能。 您也可以使用此實施來顯示描述性文字,例如 「找到43個結果」.total=100
, more=true
— 表示點選總數大於100,但不確定確切計數。 UI最多可在第一頁中顯示十頁,並為接下來的10頁提供分頁。 您也可以使用此選項來顯示類似以下的文字 「找到100個以上的結果」. 當使用者進入下一頁時,呼叫查詢產生器將增加限制 guessTotal
以及 offset
和 limit
引數。guessTotal
當UI需要使用無限捲動以避免Query Builder判斷確切點選計數時,應使用此專案。
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
http://localhost:4502/bin/querybuilder.json?type=cq:Page&orderby=@jcr:content/cq:lastModified
type=cq:Page
orderby=@jcr:content/cq:lastModified
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
http://localhost:4502/bin/querybuilder.json?fulltext=Management&orderby=@jcr:score&orderby.sort=desc
fulltext=Management
orderby=@jcr:score
orderby.sort=desc
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
使用 tagid
如果您知道明確的標籤ID,請依照此範例使用述詞。
使用 tag
標籤標題路徑的述詞(不含空格)。
在上一個範例中,因為您正在搜尋頁面( cq:Page
節點),使用該節點的相對路徑 tagid.property
述詞,即 jcr:content/cq:tags
. 根據預設, tagid.property
將只是 cq:tags
.
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
在 p.or
是一個特殊分隔符號,指示接下來的(在此例中為 or
)是 引數 的群組,而不是群組的副述詞,例如 1_path
.
若否 p.or
指定後,所有述詞會一起進行AND運算,也就是說,每個結果都必須滿足所有述詞。
您無法在一個單一查詢中使用相同的數值首碼,即使是不同的述詞亦然。
您在這裡使用 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
多次使用屬性述詞時,您必須再次新增數字首碼:
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
若要在搜尋屬性的多個值時避免大型群組( "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
依預設,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=三角形
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
如需更多述詞,請參閱 查詢產生器述詞參考頁面.
您也可以檢查 的Javadoc PredicateEvaluator
類別. 這些類別的Javadoc包含您可以使用的屬性清單。
類別名稱的前置詞(例如" similar
" in SimilarityPredicateEvaluator
)是 主體屬性 類別的。 此屬性也是要在查詢中使用的述詞名稱(小寫)。
對於這類主體屬性,您可以縮短查詢並使用" similar=/content/en
「而非完整變體」 similar.similar=/content/en
「。 類別的所有非主要屬性都必須使用完整格式。
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 );
}
若要瞭解如何建立使用QueryBuilder API的OSGi套件組合,並在Adobe Experience Manager應用程式中使用該OSGi套件組合,請參閱 建立使用查詢產生器AP的Adobe CQ OSGi套件組合I.
使用查詢產生器(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
查詢可以儲存在存放庫中,以便您稍後使用。 此 QueryBuilder
提供" storeQuery
具有下列簽章的方法:
void storeQuery(Query query, String path, boolean createFile, Session session) throws RepositoryException, IOException;
使用時 QueryBuilder#storeQuery
方法,指定的 Query
會根據「 」以檔案或屬性的形式儲存至存放庫 createFile
引數值。 下列範例顯示如何儲存 Query
至路徑 /mypath/getfiles
以檔案形式:
builder.storeQuery(query, "/mypath/getfiles", true, session);
任何先前儲存的查詢都可使用從存放庫載入 QueryBuilder#loadQuery
方法:
Query loadQuery(String path, Session session) throws RepositoryException, IOException
例如, Query
儲存至路徑 /mypath/getfiles
可透過下列程式碼片段載入:
Query loadedQuery = builder.loadQuery("/mypath/getfiles", session);
若要解決和偵錯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
只是範例)。
說明 全部 在目標索引集的開發週期中進行查詢。
啟用QueryBuilder的DEBUG記錄檔以取得基礎的、可解釋的XPath查詢
com.day.cq.search.impl.builder.QueryImpl
在 偵錯.為上述類別啟用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查詢貼入 說明查詢 作為XPath以取得查詢計畫
說明 全部 在目標索引集的開發週期中進行查詢。
透過記錄取得可說明的XPath
啟用QueryBuilder的DEBUG記錄檔以取得基礎的、可解釋的XPath查詢
com.day.cq.search.impl.builder.QueryImpl
在 偵錯.為上述類別啟用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查詢貼入 說明查詢 作為XPath以取得查詢計畫
透過Query Builder偵錯工具取得可說明的XPath
非Querybuilder查詢(XPath、JCR-SQL2)可直接提供給Explain查詢。
如需如何使用QueryBuilder對查詢進行偵錯的下拉式清單,請參閱下面的影片。
區段中會說明記錄器的設定 建立自己的記錄器和寫入器.
執行測試和偵錯中所述的查詢時,查詢產生器實作的記錄輸出(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
Javadoc | 說明 |
---|---|
com.day.cq.search | 基本QueryBuilder和查詢API |
com.day.cq.search.result | 結果API |
com.day.cq.search.facets | Facet |
com.day.cq.search.facets.buckets | 值區(包含在Facet中) |
com.day.cq.search.eval | 述詞評估工具 |
com.day.cq.search.facets.extractors | Facet擷取器(適用於評估器) |
com.day.cq.search.writer | Querybuilder servlet的JSON結果點選撰寫器(/bin/querybuilder.json?lang=zh-Hant) |