Expand my Community achievements bar.

SOLVED

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.

1 Accepted Solution

Avatar

Correct answer by
Level 3

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.

 

 

View solution in original post

4 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

Community Advisor

Please remove the configuration that might have got saved under /apps/system

Deploy your config, validate that its reflecting in OSGi console (Open the config for editing, the custom values should be visible).


Aanchal Sikka

Avatar

Correct answer by
Level 3

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.