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.
SOLVED

How to generate sitemap without ACS AEM Common Site Map Servlet?

Avatar

Level 2

Is there a way to generate a sitemap without using ACS AEM Common Site Map Servlet ?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@anthonyt2853861,

You can take a look at the implementation of the ACS Common Site Map Servlet, and use it as inspiration to build your own Site Map servlet. Cloning "com.adobe.acs.commons.wcm.impl.SiteMapServlet" directly into your project will work without much configuration. Read the implementation of the SiteMapServlet and understand what it is doing. With this example code, it should be able to steer you to the right direction on how to implement and build your own Site Map Servlet. Also, never forget about unit tests. As an example, you can take a look at ACS Common's Site Map Servlet's Unit Test,  com.adobe.acs.commons.wcm.impl.SiteMapServletTest, as inspiration.

I hope this helps!

View solution in original post

2 Replies

Avatar

Community Advisor

You have to write your won custom servlet to -

Get Pages under specific site and create site map structure

make sure you have correct xml content type as response.



Arun Patidar

Avatar

Correct answer by
Community Advisor

@anthonyt2853861,

You can take a look at the implementation of the ACS Common Site Map Servlet, and use it as inspiration to build your own Site Map servlet. Cloning "com.adobe.acs.commons.wcm.impl.SiteMapServlet" directly into your project will work without much configuration. Read the implementation of the SiteMapServlet and understand what it is doing. With this example code, it should be able to steer you to the right direction on how to implement and build your own Site Map Servlet. Also, never forget about unit tests. As an example, you can take a look at ACS Common's Site Map Servlet's Unit Test,  com.adobe.acs.commons.wcm.impl.SiteMapServletTest, as inspiration.

I hope this helps!