May 12, 2020
Estimated Post Reading Time ~

Overview Of AEM

WHAT IS AEM?
Adobe Experience Manager is a web-based client-server system for building, managing, and deploying commercial websites and related services. It combines a number of infrastructure-level and application-level functions into a single integrated package.
At the infrastructure level AEM provides the following:
  • Web Application Server: AEM can be deployed in standalone mode (it includes an integrated Jetty webserver) or as a web application within a third-party application server (WebLogic, WebSphere, etc).
  • Web Application Framework: AEM incorporates the Sling Web Application Framework that simplifies the writing of RESTful, content-oriented web applications.
  • Content Repository: AEM includes a Java Content Repository (JCR), a type of hierarchical database designed specifically for unstructured and semi-structured data. The repository stores not only the user-facing content but also all code, templates, and internal data used by the application.
Building on this base, AEM also offers a number of application-level features for the management of:
  • Websites
  • Mobile Applications
  • Digital Publications
  • Forms
  • Digital Assets
  • Social Communities
  • Online Commerce
Finally, customers can use these infrastructure and application-level building blocks to create customized solutions by building applications of their own.
The AEM server is Java-based and runs on most operating systems that support that platform. All client interaction with AEM is done through a web browser.
AEM is an enterprise web content management system. A leading reason why do so many top companies use AEM is that it simplifies the management and delivery of websites’ content and assets, and reduces the complexity of delivering online experiences to the right customers.
AEM is part of the Adobe Marketing Cloud. The Adobe Marketing Cloud is made up of multiple solutions, including Analytics, Audience Manager, Campaign, Experience Manager, Media Optimizer, Primetime, Social, and Target. All of the products come together to form a suite of tools that allow marketers to better understand their customers and make sure those customers have the best possible interactions with the marketer’s brand. AEM comprises of 5 different tool, where each module has its own significance to manage the marketing content –
  1. Sites.
  2. Assets.
  3. Mobile.
  4. Forms.
  5. Communities.
All thought I haven’t explored much about all the above items. May be in the future I will try to elaborate and make a separate page for each of the topics.

Prerequisites for Developing on AEM

To be an AEM developer below are the technology must be possessed as per Adobe themselves –
  • Basic knowledge of web application techniques, including:
    • the request-response (XMLHttpRequest / XMLHttpResponse) cycle
    • HTML
    • CSS
    • JavaScript
  • Working knowledge of the Experience Server (CRX), including the Content Explorer
  • Basic knowledge of JSP (JavaServer Pages), with the ability to understand and modify simple JSP examples.

AEM Architectural explanation


AEM technology stack can be divide into following,
  1. Java Run time Environment (commonly known as JRE)
  2. Granite Platform
  3. AEM modules(Adobe Experience Manager)
  4. Custom Application Module (your website)

Java Run time Environment [JRE]:

AEM is more or less a combination of or collection of jars, jsps [Java Server Pages], servlets, Java classes along with static resources such as HTML, pictures, assets, etc. To drive this architecture, it needs JRE.
This makes AEM compatible with any OS that supports required JRE.

Granite Platform:

Granite platform is a key role player in AEM stack. Granite is Adobe’s open web stack. As you can observe from the image above, Granite platform consists of below-listed modules:
  1. CQSE Servlet Engine
  2. CRX Content Repository
  3. Sling Content Delivery
  4. OSGi Framework
CQSE Servlet Engine:  AEM requires an application server that supports Java Servlets API 2.4 or later. The AEM software package is available in two forms:
  1. cq-quickstart.jar: it includes everything needed to get up and running (also called as a “standalone executable jar”). The Quickstart Standalone jar file contains a built-in servlet engine. As the name “Standalone” suggests user can simply double-click the jar file to install an AEM instance with built-in servlet-engine. You do not require any dedicated external application server for servlet handling. In this case, you only need a JRE and a standalone quickstart JAR file.
  2. cq-quickstart.war: for deployment in a third-party application server. WAR file does not contain built-in servlet engines. In this case, you need a JRE, a WAR file, and a third party application server for servlet handling.
CRX Content RepositoryEverything in AEM is stored in nodes and properties in a built-in CRX content repository. CRX is a content repository of JCR type. JCR specifications combine features of the relational database and file systems, allowing fine-grained access to the content repository in File-system Fashion and also in Database fashion.
Let’s understand some terms here itself:
  • CRX (Content repository Xtreme): CRX is repository built into AEM.
  • JSR (Java Specification Request): JSR’s are the formal documents that describe proposed specifications and technologies for adding to the Java platform. There are hundreds of JSR. CRX is Adobe’s implementation of the JSR-283.
  • JCR (Content Repository API for Java):   It can be defined as the specifications for accessing content repository using JAVA API in a uniform manner. So, JCR is a “type of repository”. CRX is an implementation of JCR. Similarly, Apache Jackrabbit is an example of JCR.
To summarize, CRX is content repositories of type JCR and CRX is an implementation of JSR (JSR-283).
The Java Content Repository (JCR) standard, JSR 283, specifies a vendor-independent and implementation-independent way to access content bi-directionally on a granular level within a content repository.
Sling Content DeliverySling is a Web application framework based on REST principles. The sling allows easy development of content-oriented applications. AEM is based on the sling. Sling uses repository of type JCR, such as CRX and Apache Jackrabbit.
“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 that are easily customized to their requirements.”  
The advantages of the content first approach are significant when we have a wide range of different content elements, or when you need easily customizable pages.
OSGi Framework (Open Service Gateway Initiative)OSGi (Open Service Gateway Initiative) is a Java framework for developing and deploying modular software programs and libraries. OSGI is a modular system that implements dynamic components/applications in the form of bundles. AEM is based on OSGi. AEM can be thought of as a conglomeration of bundles(components). All the bundles in AEM can be operated from a web console.
A bundle is a jar file holding Java classes and a special metadata file (META-INF subfolder). Applications or components coming in the form of bundles installed, started, stopped, updated, and uninstalled without requiring a reboot. Each bundle(component/application) is a tightly coupled, dynamically loadable collection of classes, jars, and configuration files that explicitly declare their external dependencies.
OSGi framework, elements of AEM as well as any additional custom applications on top AEM platform are implemented in OSGI bundles.

AEM Modules:

AEM runs on a Granite platform, meaning all the below-mentioned modules sit within the Granite platform. This framework includes all the application layer functions such as mobile functionality, multi-site manager, taxonomy management, and workflow.  AEM is a complete package of below-mentioned modules built on the Granite platform in the OSGI framework.
  • Websites
  • Mobile Applications
  • Digital Publications
  • Forms
  • Digital Assets
  • Communities
  • Online Commerce
Customers can leverage these application-level building blocks to create customized solutions by building applications of their own.

Custom Application Module (your website):

Customers can build their own customized application module o top of AEM. The underlying technology stack empowers the customer to take advantage of AEM features such as flexibility, simplicity in the management and delivery of websites, content, and assets, and reduced complexity of delivering online experiences to the right customers.

JCR

The JCR specifically JSR-283 is a database that supports the structure and unstructured content, versioning, and observations. All data pertaining inside the AEM such as HTML, CSS, images, and scripts, etc are stored in the JCR object database. It is built with Apache Jackrabbit Oak. AEM can also work with other non-JCR data stores through connectors.

Advantages of using JCR

  1. It is a generic data store for structured and unstructured content. The file system is good for unstructured hierarchical content, while the database works well for structured data. JCR has the best of both the data structures.
  2. It supports namespaces. Namespace prevents the naming collision within different items. JCR namespaces are defines with a prefix, delimited by a colon (:);  for example JCR: title.

INTRODUCTION TO SLING

AEM is built using Sling, a Web application framework based on REST principles that provide easy development of content-oriented applications. Sling uses a JCR repository, such as Apache Jackrabbit, or in the case of 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 that 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.
The following diagram explains Sling script resolution: it shows how to get from the HTTP request to content node, from content node to resource type, from resource type to script and what scripting variables are available.


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

SLING IS CONTENT CENTRIC

Sling is content-centric. This means that processing is focused on the content as each (HTTP) request is mapped onto content in the form of a JCR resource (a repository node):
  • the first target is the resource (JCR node) holding the content
  • secondly, the representation, or script, is located from the resource properties in combination with certain parts of the request (e.g. selectors and/or the extension)
RESTFUL SLING
Due to the content-centric philosophy, Sling implements a REST-oriented server and thus features a new concept in web application frameworks. The advantages are:
  • very RESTful, not just on the surface; resources and representations are correctly modelled inside the server
  • removes one or more data models
    • previously the following were needed: URL structure, business objects, DB schema;
    • this is now reduced to: URL = resource = JCR structure

URL DECOMPOSITION

In Sling, the processing is driven by the URL of the user request. This defines the content to be displayed by the appropriate scripts. To do this, information is extracted from the URL.
If we analyze the following URL:
http://myhost/tools/spy.printable.a4.html/a/b?x=12
We can break it down into its composite parts:
protocolhostcontent pathselector(s)extensionsuffixparam(s)
http://myhosttools/spy.printable.a4.html/a/b?x=12
protocol HTTP
the hostName of the website.
content path Path specifying the content to be rendered. It is used in combination with the extension; in this example, they translate to tools/spy.html.
selector(s) Used for alternative methods of rendering the content; in this example a printer-friendly version in A4 format.
extension Content format; also specifies the script to be used for rendering.
suffix Can be used to specify additional information.
param(s) Any parameters required for dynamic content.

From URL to Content and Scripts

Using these principles:
  • the mapping uses the content path extracted from the request to locate the resource
  • when the appropriate resource is located, the sling resource type is extracted and used to locate the script to be used for rendering the content
The figure below illustrates the mechanism used, which will be discussed in more detail in the following sections.
With Sling, you specify which script renders a certain entity (by setting the sling:resourceType property in the JCR node). This mechanism offers more freedom than one in which the script accesses the data entities (as an SQL statement in a PHP script would do) as a resource can have several renditions.

Mapping requests to resources

The request is broken down and the necessary information extracted. The repository is searched for the requested resource (content node):
  • first Sling checks whether a node exists at the location specified in the request; e.g. ../content/corporate/jobs/developer.html
  • if no node is found, the extension is dropped and the search repeated; e.g. ../content/corporate/jobs/developer
  • if no node is found then Sling will return the http code 404 (Not Found).
Sling also allows things other than JCR nodes to be resources, but this is an advanced feature.

LOCATING THE SCRIPT

When the appropriate resource (content node) is located, the sling resource type is extracted. This is a path, which locates the script to be used for rendering the content.
The path specified by the sling:resourceType can be either:
  • absolute
  • relative, to a configuration parameter
    Relative paths are recommended by Adobe as they increase portability.
All Sling scripts are stored in subfolders of either /apps or /libs, which will be searched in this order (see Customizing Components and Other Elements).
A few other points to note are:
  • when the Method (GET, POST) is required, it will be specified in uppercase as according to the HTTP specification e.g. jobs.POST.esp (see below)
  • various script engines are supported:
    • .esp, .ecma: ECMAScript (JavaScript) Pages (server-side execution)
    • .jsp: Java Server Pages (server-side execution)
    • .java: Java Servlet Compiler (server-side execution)
    • .jst: JavaScript templates (client-side execution)
The list of script engines supported by the given instance of CQ are listed on the Felix Management Console (http://localhost:4502/system/console/config/slingscripting.txt).
Additionally, Apache Sling supports integration with other popular scripting engines (e.g., Groovy, JRuby, Freemarker), and provides a way of integrating new scripting engines.
Using the above example, if the sling:resourceType is hr/jobs then for:
  • GET/HEAD requests, and URLs ending in .html (default request types, default format)
    The script will be /apps/hr/jobs/jobs.esp; the last section of the sling:resourceType forms the file name.
  • POST requests (all request types excluding GET/HEAD, the method name must be uppercase)
    POST will be used in the script name.
    The script will be /apps/hr/jobs/jobs.POST.esp.
  • URLs in other formats, not ending with .html
    For example ../content/corporate/jobs/developer.pdf
    The script will be /apps/hr/jobs/jobs.pdf.esp; the suffix is added to the script name.
  • URLs with selectors
    Selectors can be used to display the same content in an alternative format. For example a printer friendly version, an rss feed or a summary.
    If we look at a printer friendly version where the selector could be print; as in ../content/corporate/jobs/developer.print.html
    The script will be /apps/hr/jobs/jobs.print.esp; the selector is added to the script name.
  • If no sling:resourceType has been defined then:
    • the content path will be used to search for an appropriate script (if the path based ResourceTypeProvider is active).
      For example, the script for ../content/corporate/jobs/developer.html would generate a search in /apps/content/corporate/jobs/.
    • the primary node type will be used.
  • If no script is found at all then the default script will be used.
    The default rendition is currently supported as plain text (.txt), HTML (.html) and JSON (.json), all of which will list the node’s properties (suitably formatted). The default rendition for the extension .res, or requests without a request extension, is to spool the resource (where possible).
  • For http error handling (codes 403 or 404) Sling will look for a script at either:
    • the location /apps/sling/servlet/errorhandler for customized scripts
    • or the location of the standard scripts /libs/sling/servlet/errorhandler/403.esp, or 404.esp respectively.
If multiple scripts apply for a given request, the script with the best match is selected. The more specific a match is, the better it is; in other words, the more selector matches the better, regardless of any request extension or method name match.
For example, consider a request to access the resource
/content/corporate/jobs/developer.print.a4.html
of type
sling:resourceType=”hr/jobs”
Assuming we have the following list of scripts in the correct location:
  1. GET.esp
  2. jobs.esp
  3. html.esp
  4. print.esp
  5. print.html.esp
  6. print/a4.esp
  7. print/a4/html.esp
  8. print/a4.html.esp
Then the order of preference would be (8) – (7) – (6) – (5) – (4) – (3) – (2) – (1).
In addition to the resource types (primarily defined by the sling:resourceType property) there is also the resource super type. This is generally indicated by the sling:resourceSuperType property. These super types are also considered when trying to find a script. The advantage of resource super types is that they may form a hierarchy of resources where the default resource type sling/servlet/default (used by the default servlets) is effectively the root.
The resource super type of a resource may be defined in two ways:
  • by the sling:resourceSuperType property of the resource.
  • by the sling:resourceSuperType property of the node to which the sling:resourceType points.
For example:
  • /
    • a
    • b
      • sling:resourceSuperType = a
    • c
      • sling:resourceSuperType = b
    • x
      • sling:resourceType = c
    • y
      • sling:resourceType = c
      • sling:resourceSuperType = a
The type hierarchy of /x is [ c, b, a, <default>] while for /y the hierarchy is [ c, a, <default>] because /y has the sling:resourceSuperType property whereas /x does not and therefore its supertype is taken from its resource type.

Sling Scripts cannot be called directly

Within Sling, scripts cannot be called directly as this would break the strict concept of a REST server; you would mix resources and representations.
If you call the representation (the script) directly you hide the resource inside your script, so the framework (Sling) no longer knows about it. Thus you lose certain features:
  • automatic handling of http methods other than GET, including:
    • POST, PUT, DELETE which are handled with a sling default implementation
    • the POST.jsp script in your sling:resourceType location
  • your code architecture is no longer as clean nor as clearly structured as it should be; of prime importance for large-scale development

SLING API

This uses the Sling API package, org.apache.sling.*, and tag libraries.

REFERENCING EXISTING ELEMENTS USING SLING:INCLUDE

A final consideration is the need to reference existing elements within the scripts.
More complex scripts (aggregating scripts) might need to access multiple resources (for example navigation, sidebar, footer, elements of a list) and do so by including the resource.
To do this you can use the sling:include(“/<path>/<resource>”) command. This will effectively include the definition of the referenced resource, as in the following statement which references an existing definition for rendering images:
%><sling:include resourceType="geometrixx/components/image/img"/><%

OSGI

OSGi defines an architecture for developing and deploying modular applications and libraries (it is also known as the Dynamic Module System for Java). OSGi containers allow you to break your application into individual modules (are jar files with additional meta information and called bundles in OSGi terminology) and manage the cross-dependencies between them with:
  • services implemented within the container
  • a contract between the container and your application
These services and contracts provide an architecture which enables individual elements to dynamically discover each other for collaboration.
An OSGi framework then offers you dynamic loading/unloading, configuration and control of these bundles – without requiring restarts.

NOTE

 Full information on OSGi technology can be found at the OSGi Alliance Technology Overview. In particular, their Basic Education page holds a collection of presentations and tutorials.

This architecture allows you to extend Sling with application specific modules. Sling, and therefore CQ5, uses the Apache Felix implementation of OSGI (Open Services Gateway initiative) and is based on the OSGi Service Platform Release 4 Version 4.2 Specifications. They are both collections of OSGi bundles running within an OSGi framework. This enables you to perform the following actions on any of the packages within your installation:
  • install
  • start
  • stop
  • update
  • uninstall
  • see the current status
  • access more detailed information (e.g. symbolic name, version, location, etc) about the specific bundles

Development Objects in the AEM Environment

The following are of interest for development:

Item

An item is either a node or a property. For detailed information on manipulating Item objects, refer to the Javadocs of the Interface javax.jcr.Item

Node (and their properties)

Nodes and their properties are defined in the JCR API 2.0 specification (JSR 283). They store content, object definitions, rendering scripts and other data.
Nodes define the content structure, and their properties store the actual content and metadata.
Content nodes drive the rendering. Sling gets the content node from the incoming request. The property sling:resourceType of this node points to the Sling rendering component to be used.
A node, which is a JCR name, is also called a resource in the Sling environment.
For example, to get the properties of the current node, you can use following code in your script:
PropertyIterator properties = currentNode.getProperties();
With currentNode being the current node object.
For more information on manipulating Node objects, refer to the Javadocs.

Widget

In AEM all user input is managed by widgets. These are often used to control the editing of a piece of content.
Dialogs are built by combining Widgets.
AEM has been developed using the ExtJS library of widgets.

Dialog

A dialog is a special type of widget.
To edit content, AEM uses dialogs defined by the application developer. These combine a series of widgets to present the user with all fields and actions necessary to edit the related content.
Dialogs are also used for editing metadata, and by various administrative tools.

Component

A software component is a system element offering a predefined service or event, and able to communicate with other components.
Within AEM a component is often used to render the content of a resource. When the resource is a page, the component rendering it is called a Top-Level Component or a Pagecomponent. However, a component does not have to render content, nor be linked to a specific resource; for example, a navigation component will display information about multiple resources.
The definition of a component includes:,
the code used to render the content
a dialog for the user input and the configuration of the resulting content.

Template

A template is the base for a specific type of page. When creating a page in the Websites tab the user has to select a template. The new page is then created by copying this template.
A template is a hierarchy of nodes that has the same structure as the page to be created, but without any actual content.
It defines the page component used to render the page and the default content (primary top-level content). The content defines how it is rendered as AEM is content-centric.

Page Component (Top-Level Component)

The component to be used to render the page.

Page

A page is an ‘instance’ of a template.
A page has a hierarchy node of type cq:Page and a content node of type cq:PageContent. The property sling:resourceType of the content node points to the Page Component used for rendering the page.
For example, to get the name of the current page, you can use following code in your script:
String pageName = currentPage.getName();
With currentPage being the current page object. For more information on manipulating Page objects, refer to the Javadocs.

Page Manager

The page manager is an Interface that provides methods for page level operations.
For example, to get the containing page of a resource, you can use following code in your script:
Page myPage = pageManager.getContainingPage(myResource);
With pageManager being the page manager object and myResource a resource object. For more information on the methods provided by the page manager, refer to the Javadocs.

Structure within the Repository

The following list gives an overview of the structure you will see within the repository.
Changes to this structure, or the files within it, should be made with care.
Changes are needed when you are developing, but you should take care that you fully understand the implications of any changes you make.
You must not change anything in the /libs path. For configuration and other changes copy the item from /libs to /apps and make any changes within /apps.
  • /apps
    Application related; includes component definitions specific to your website. The components that you develop can be based on the out of the box components available at /libs/foundation/components.
  • /content
    Content created for your website.
  • /etc
    Tools section for detailed information.
  • /home
    User and Group information.
  • /libs
    Libraries and definitions that belong to the core of AEM. The sub-folders in /libs represent the out of the box AEM features as for example search or replication. The content in /libs should not be modified as it affects the way AEM works. Features specific to your website should be developed under /apps (see Customizing Components and Other Elements).
  • /tmp
    Temporary working area.
  • /var
    Files that change and are updated by the system; such as audit logs, statistics, event-handling. The sub-folder /var/classes contains the java servlets in source and compiled forms that have been generated from the components scripts.

Environments

With AEM a production environment often consists of two different types of instances: an Author and a Publish instances.

The Dispatcher

The Dispatcher is Adobe’s tool for both caching and/or load balancing. Further information can be found under  the Dispatcher.

FileVault (source revision system)

FileVault provides your JCR repository with file system mapping and version control. It can be used to manage AEM development projects with full support for storing and versioning project code, content, configurations and so on, in standard version control systems (for example, Subversion).
See the FileVault tool documentation for detailed information.

Workflows

Your content is often subject to organizational processes, including steps such as approval and sign-off by various participants. These processes can be represented as workflows, defined and developed within AEM, then applied to the appropriate content pages or digital assets as required.
The Workflow Engine is used to manage the implementation of your workflows, and their subsequent application to your content.

Multi-Site Management

Multi Site Manager (MSM) enables you to easily manage multiple web sites that share common content. MSM lets you define relations between the sites so that content changes in one site are automatically replicated in other sites.
For example, web sites are often provided in multiple languages for international audiences. When the number of sites in the same language is low (three to five), a manual process for syncronizing content across sites is possible. However, as soon as the number of sites grows or when multiple languages are involved, it becomes more efficient to automate the process.
Efficiently manage different language versions of a website.
Automatically update one or more sites based on a source site:
Enforce a common base structure and use common content across multiple sites.
Maximize the use of available resources.
Maintain a common look and feel.
Focus efforts on managing the content that differs between the sites.
For more information, see  Multi Site Manage



By aem4beginner

No comments:

Post a Comment

If you have any doubts or questions, please let us know.