Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

How NOT to Generate HTML | AEM Community Blog Seeding

Avatar

Administrator

BlogImage.jpg

How NOT to Generate HTML by Daniel Klco

Abstract

Recently, I have been working on an integeration between Adobe's Search and Promote and CQ5/AEM. This work has reminded me of one of my least favorite anti-patterns, embedding HTML markup in Java code. You tend to see this 'technique' a lot in Servlets, Tags and other Java web technologies. This is a bad idea for several reasons:

It breaks the MVC model
It's hard to understand the HTML code
It's difficult, if not impossible, to modify the markup
In the case of Search and Promote, the CQ integration classes are used to parse the XML responses from Search and Promote. The unfortunate part is they also are used to generate the HTML for the forms to be displayed in CQ as well as some additional HTML markup. While this makes for smaller scripts in CQ, it makes extending the Search and Promote functionality more difficult than necessary.

A better technique which is available to anyone developing on the AEM platform is to generate the data required and invoke a rendering script with a virtual resource to render the results to the page. This allows you to separate out the HTML and Java code, makes it easier to understand the markup and allows end users to override the rendering script like any other JSP.

The technique for doing this is fairly straightforward. First, create a SyntheticResource:

Resource fakeResource = new SyntheticResource(request.getResourceResolver(), "/content/site/resource-path", "app/components/component1");
Next, retrieve a RequestDispatcher:

RequestDispatcher dispatcher = request.getRequestDispatcher(fakeResource);
And finally forward the request to the Sling rendering layer:

dispatcher.forward(request, response);
Once the request is forward to Sling, it will be processed like any other Sling Request and the HTML written to the response.

Read Full Blog

How NOT to Generate HTML

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
0 Replies