Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

Adding custom execution path in Servlet Resolver

Avatar

Level 3

Hi,

I have created a Sling servlet and I need to register it using some custom path, e.g, /aem/testServlet

If I add this execution path entry in configuration "Apache Sling Servlet/Script Resolver and Error Handler", it works fine. But I need to create a custom configuration of this path for my project so that it can be deployed with the code.

Can anyone please help with this.

0 Replies

Avatar

Level 3

Hi,

You can create a OSGI Config and include in ur codebase.

/apps/my-project/config/org.apache.sling.servlets.resolver.SlingServletResolver.xml

with ur custom paths under servletresolver.paths

Avatar

Level 3

I have already created this custom config and added the execution paths. But still it's picking up the OOTB SlingServletResolver, and my execution path is not getting registered.

Avatar

Level 2

Create an XML file with name org.apache.sling.servlets.resolver.SlingServletResolver in config folder.

Add servletresolver.paths property with your custom paths as specified below.

 

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:OsgiConfig"
servletresolver.paths="[/custom/path]"
/>

 

Note: If you have already configured this manually in config manager console, and later trying to configure through code will not work. As, AEM tries to read from system rather from config folder.

In this case you have to delete the paths created in the CRX and then the paths will get configured through config folder.