Experience Server (CRX) and Jackrabbit

The Experience Server provides the Experience Services which AEM is built on, and which can be used to build custom applications, and it embeds the Content Repository based on Jackrabbit.

Apache Jackrabbit is an open source, fully conforming, implementation of the JCR API 2.0.

Sling Request Processing

Introduction to Sling

AEM is built using Sling, a Web application framework-based on REST principles that provides easy development of content-oriented applications. Sling uses a JCR repository, such as Apache Jackrabbit or, if there is AEM, the CRX Content Repository, as its data store. Sling has been contributed to the Apache Software Foundation - further information can be found at Apache.

Using Sling, the type of content to be rendered is not the first processing consideration. Instead the main consideration is whether the URL resolves to a content object for which a script can then be found to perform the rendering. This provides excellent support for web content authors to build pages which are easily customized to their requirements.

The advantages of this flexibility are apparent in applications with a wide range of different content elements, or when you need pages that can be easily customized. In particular, when implementing a Web Content Management system such as the WCM in the AEM solution.

See Discover Sling in 15 minutes for the first steps for developing with Sling.

The following diagram explains Sling script resolution. It shows how to get from HTTP request to content node, from content node to resource type, from resource type to script, and what scripting variables are available.

Understanding Apache Sling script resolution

The following diagram explains all the hidden, but powerful, request parameters that you can use when dealing with the SlingPostServlet. It includes the default handler for all POST requests that gives you endless options for creating, modifying, deleting, copying, and moving nodes in the repository.

Using the SlingPostServlet