How to Put It All Together - Your App and Your Content in AEM Headless put-it-all-together
In this part of the AEM Headless Developer Journey, you get familiar with learn how to use the AEM development tooling and the Headless SDK to put your application together.
The Story So Far story-so-far
In the previous document of the AEM headless journey, How to Update Your Content via AEM Assets APIs you learned how to update your existing headless content in AEM via API and you should now:
- Understand the AEM Assets HTTP API.
Objective objective
This article aims to help you understand how to put your AEM headless application together by:
- Learning about the AEM Headless SDK and the development tooling required
- Setting up a local development runtime to simulate your content before going live
- Understanding AEM Content Replication Basics
The AEM SDK the-aem-sdk
The AEM SDK is used to build and deploy custom code. It is the main tool that you need so you can develop and test your headless application before going live. It contains the following artifacts:
- The Quickstart jar - an executable jar file that can be used to set up both an author and a publish instance
- Dispatcher tools - the Dispatcher module and its dependencies for Windows and UNIX® based systems
- Java™ API Jar - The Java™ Jar/Maven Dependency that exposes all allowed Java™ APIs that can be used to develop against AEM
- Javadoc jar - the javadocs for the Java™ API jar
The AEM Headless SDK the-aem-headless-sdk
Different from the AEM SDK, the AEM Headless SDK is set of libraries that can be used by clients to quickly and easily interact with AEM Headless APIs over HTTP.
For more information on the AEM Headless SDK, see the documentation here.
Additional Development Tools additional-development-tools
Besides the AEM SDK, you need additional tooling that facilitates developing and testing your code and content locally:
- Java™
- Git
- Apache Maven
- The Node.js library
- The IDE of your choice
Because AEM is a Java™ application, you need to install Java™ and the Java™ SDK to support the development of AEM as a Cloud Service.
Git is what you use to manage source control and to check in the changes to Cloud Manager and then deploy them to a production instance.
AEM uses Apache Maven to build projects generated from the AEM Maven Project archetype. All major IDEs provide integration support for Maven.
Node.js is a JavaScript runtime environment used to work with the front-end assets of an AEM project’s ui.frontend
sub-project. Node.js is distributed with npm, is the de facto Node.js Package Manager, used to manage JavaScript dependencies.
Components of an AEM System at a Glance components-of-an-aem-system-at-a-glance
Next, let’s look at the constituent parts of an AEM environment.
A full AEM environment is made up of an Author, Publish, and Dispatcher. These same components are made available in the local development runtime so you can make it easier for you to preview your code and content before going live.
-
The Author service is where internal users create, manage, and preview content.
-
The Publish service is considered the “Live” environment and is typically what end users interact with. Content, after being edited and approved on the Author service, is distributed to the Publish service. The most common deployment pattern with AEM headless applications is to have the production version of the application connect to an AEM Publish service.
-
The Dispatcher is a static web server augmented with the AEM Dispatcher module. It caches web pages produced by the publish instance to improve performance.
The Local Development Workflow the-local-development-workflow
The local development project is built on Apache Maven and is using Git for source control. To update the project, developers can use their preferred integrated development environment, such as Eclipse, Visual Studio Code, or IntelliJ, among others.
To test code or content updates that are ingested by your headless application, you must deploy the updates to the local AEM runtime, which includes local instances of the AEM author and publish services.
Make sure to take note of the distinctions between each component in the local AEM runtime, as it is important to test your updates where they matter the most. For example, test content updates on author or test new code on the publish instance.
In a production system, a Dispatcher and an http Apache server will always sit in front of an AEM publish instance. They provide caching and security services for the AEM system, so it is paramount to test code and content updates against the Dispatcher as well.
Previewing Your Code and Content Locally with The Local Development Environment previewing-your-code-and-content-locally-with-the-local-development-environment
To prepare your AEM headless project for launch, you need to make sure that all constituent parts of your project are functioning well.
To do that, you must put everything together: code, content, and configuration and test it in a local development environment for go live readiness.
The local development environment is comprised of three main areas:
- The AEM Project - this project contains all the custom code, configuration, and content the AEM developers are going to be working on
- The Local AEM Runtime - local versions of the AEM author and publish services that are used to deploy code from the AEM project
- The Local Dispatcher Runtime - a local version of the Apache htttpd webserver that includes the Dispatcher module
Once the local development environment is set up, you can simulate content serving to the React app by deploying a static Node server locally.
What’s Next whats-next
Now that you have completed this part of the AEM Headless Developer Journey, you should:
- Be familiar with the AEM Development Tools
- Understand the local development workflow
Continue your AEM headless journey by next reviewing the document How to Go Live with Your Headless Application where you actually take your AEM Headless project live!