Expand my Community achievements bar.

Developing a Java Swing Application that displays Adobe Experience Manager Data

Avatar

Level 10

When working with Adobe Experience Manager (AEM), sometimes you need to query data that is located in the AEM JCR and view results. Typically you write an AEM component to display JCR data results within an AEM web application. However, sometimes you want to view JCR data from a tool that is separate from an AEM web application. For example, consider members that are stored as AEM JCR data. Assume that you want the quickly view screen names, display names, and score values.

In this situation, a Java Swing application is a good choice to use to build a custom tool that enables you to quickly query JCR data and view the result set. You can display the result set in a Swing data type that extends javax.swing.JTable, as shown in this illustration. 

For information about javax.swing.JTable, see http://docs.oracle.com/javase/7/docs/api/javax/swing/JTable.html.

This development article walks you through how to build a Java Swing application that queries the AEM JCR and displays the result set. To read this development article, click http://helpx.adobe.com/experience-manager/using/java-swing-applications.html.

1 Reply

Avatar

Level 2

I wanted to see the Swing app example, not the Weekend tutorial. Its not the same use case.