How can I query the AEM JCR | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

You can create an OSGi bundle and place Java JCR API application logic within the OSGi bundle. That is, you can wrap JCR API application logic within an OSGi bundle to query the AEM JCR. You can then invoke operation exposed by the OSGi bundle from a client web page and display the result set (data retrieved from the Adobe CQ JCR) in a grid control, as shown here:

[img]datagrid.png[/img]

For details, see http://scottsdigitalcommunity.blogspot.ca/2013/02/querying-adobe-experience-manager-data.html.

2 replies

smacdonald2008
smacdonald2008AuthorAccepted solution
New Participant
October 16, 2015

You can create an OSGi bundle and place Java JCR API application logic within the OSGi bundle. That is, you can wrap JCR API application logic within an OSGi bundle to query the AEM JCR. You can then invoke operation exposed by the OSGi bundle from a client web page and display the result set (data retrieved from the Adobe CQ JCR) in a grid control, as shown here:

[img]datagrid.png[/img]

For details, see http://scottsdigitalcommunity.blogspot.ca/2013/02/querying-adobe-experience-manager-data.html.

Employee
October 16, 2015

Very Helpful, thanks!