Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

AEM - Understand Java API Best Practices | AEM Community Discussion

Avatar

Administrator

BlogImage.jpg

AEM - Understand Java API Best Practices by Adobe Docs

Abstract

Adobe Experience Manager (AEM) is built on a rich open-source software stack that exposes many Java APIs for use during development. This article explores the major APIs and when and why they should be used.
AEM is built on 4 primary Java API sets.
1. Adobe Experience Manager (AEM)
--->Product abstractions such as pages, assets, workflows, etc.
2. Apache Sling Web Framework
--->REST and resource-based abstractions such as resources, value maps, and HTTP requests.
3. JCR (Apache Jackrabbit Oak)
--->Data and content abstractions such as node, properties and sessions.
4. OSGi (Apache Felix)
--->OSGi application container abstractions such as services and (OSGi) components.

Java API preference "rule of thumb"
The general rule is to prefer the APIs/abstractions the following order:
AEM > Sling >JCR > OSGi
If an API is provided by AEM, prefer it over Sling, JCR, and OSGi. If AEM doesn't provide an API, then prefer Sling over JCR and OSGi.

Read Full Blog

AEM - Understand Java API Best Practices

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

0 Replies