AEM Sling Dynamic Include (SDI): How to Implement?

Sling Dynamic Include (SDI) is a feature of Adobe Experience Manager that allows you to dynamically include fragments of content on a page. This can be useful for a variety of purposes, such as including a header or footer on every page, or including a dynamic list of content on a page. When SDI is enabled for a component, that component content will be dynamically included on the page.

What is Sling Dynamic Include (SDI)?

Let us understand with a diagram.

sling dynamic include ssi esi jsi

There are three types of includes. The “include type” can be one of the following:

SSI: Server Side Includes

sling dynamic include processing flow
Source: https://sling.apache.org/documentation/bundles/dynamic-includes.html#plain-and-synthetic-resources-1

Implementation

Steps For SSI in AEM

  1. To implement SDI, you first need to download the SDI Module from https://sling.apache.org/downloads.cgi#:~:text=Dynamic and install the downloaded bundle using the AEM system console.
  2. After installing the bundle, make sure it goes to Active State.
  3. Go to System Console Configmgr and search for “Apache Sling Dynamic Include – Configuration” and add the config as below
    • Sling Dynamic Include AEM Configuration
  4. Once this configuration is enabled, you can load the page where the component is configured and if you inspect the source code, you can see the component div like this –
    • sling dynamic include aem source code
  5. In the above screenshot, the code part i.e. <!–#include virtual='</path/to/resource/component.nocache.html’ –> is the part where the actual code will be replaced once the dispatcher is enabled with Sling dynamic include settings.

Steps for SSI on Dispatcher

  1. Enable it as per this documentation https://sling.apache.org/documentation/bundles/dynamic-includes.html#enabling-ssi-in-apache-with-the-aem-dispatcher-module
  2. Once set up correctly, you can observe that the component always fetches the dynamic data.
  3. You can also view the source of the page and notice that the <!–#include part of the HTML code gets replaced with the html code of the component.

You can verify the same by going to the cached html file on the dispatcher cache and you will find that in the cached file, there is the <!–#include virtual=”/path/to/resource” –> available in the view: source.

ESI: Edge Side Includes

It is similar to the SSI but in this case, along with the configurations and settings at the dispatcher level, it needs to be enabled at the CDN level as well. Almost all major CDNs like Akamai, Cloudflare, Cloudfront, etc support the ESI. In the AEM configmgr, you need to select the ESI in this case.

sdi ssi esi jsi
Select ESI in the Include type dropdown

ESI Code snippet in cached HTML File

<esi:include src="http://example.com/1.html" alt="http://bak.example.com/2.html" onerror="continue"/>

Properly explained here in Cloudflare documentation https://blog.cloudflare.com/edge-side-includes-with-cloudflare-workers/ Similarly, available in Akamai as well – https://techdocs.akamai.com/property-mgr/docs/esi-edge-side-includes

Javascript Includes

Similar to SSI, but in this the dynamic include code snippet is worked upon by the javascript. It may not be reliable as it is dependent on the browser. Some users block the javascript on their browser.

javascript include type in config mgr
Select Javascript in the Include type dropdown
javsript includes html code snippet
The code snippet in the cached HTML file

Explanation Video

AEM SDI – Nicely Explained!

Benefits of Sling Dynamic Include

Here are some of the benefits of using Sling Dynamic Include:

  • Allows to serve highly dynamic content at the same time, allows to cache a fragment of the page using the “.html” extension
  • It can make your pages more modular and easier to maintain.
  • It can be used to include dynamic content that is generated by a script.

Limitations of Sling Dynamic Include

Here are some of the limitations of using Sling Dynamic Include:

  • It can be complex to configure.
  • It can only be used with Sling-based applications.
  • It can introduce security vulnerabilities if not used properly.

Overall, Sling Dynamic Include is a powerful feature that can be used to improve the performance and maintainability of your Adobe Experience Manager pages.

Further Readings

Feel free to share your thoughts on this topic in the comments section below 👇 We would be happy to hear and discuss the same 🙂

Spread the word!
0Shares

Leave a comment

Your email address will not be published. Required fields are marked *