Multiple Selectors in AEM Servlet | AEM Community Blog Seeding | Community
Skip to main content
kautuk_sahni
Community Manager
Community Manager
May 25, 2021

Multiple Selectors in AEM Servlet | AEM Community Blog Seeding

  • May 25, 2021
  • 0 replies
  • 2510 views

BlogImage.jpg

Multiple Selectors in AEM Servlet by keshav chaurasiya

Abstract

You can use the multiple selectors in AEM Servlet. Please see the example below for the reference.

Your Page url : /content/en/aem-selector.selector1.selector2.json

Example :

@Component(service = Servlet.class, immediate = true, property = {

"description=Get AEM Selector ",

ServletResolverConstants.SLING_SERVLET_METHODS + "="

+ HttpConstants.METHOD_GET,

ServletResolverConstants.SLING_SERVLET_RESOURCE_TYPES + "=sling/servlet/default",

ServletResolverConstants.SLING_SERVLET_SELECTORS +"=selector1.selector2",

ServletResolverConstants.SLING_SERVLET_EXTENSIONS + "=json"})

@SuppressWarnings("serial")

public class AEMSelector extends SlingSafeMethodsServlet {

private static Logger log = LoggerFactory.getLogger(AEMSelector.class);

@Override

protected void doGet(final SlingHttpServletRequest request,

final SlingHttpServletResponse response) throws ServletException,

IOException {

log.debug("Enter in doGet method...");

}

Read Full Blog

Multiple Selectors in AEM Servlet

Q&A

Please use this thread to ask the related questions.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.