Invalid recursion selector value issue in AEM 6.5
we recently moved from 6.2 to 6.5, we converted felix to osgi. There are several servlets that is showing 400 with following message
Invalid recursion selector value 'abc'
Cannot serve request to /content/mysite/en-us/some/application/page/_jcr_content.abc.json in org.apache.sling.servlets.get.DefaultGetServlet
Here is my servlet class
@8220494(service = Servlet.class, property = {
SLING_SERVLET_RESOURCE_TYPES + "={/apps/xxx/components/structure/resourcetype, xxx/components/structure/resourcetype}",
SLING_SERVLET_METHODS + "=GET",
SLING_SERVLET_EXTENSIONS+"=json",
SLING_SERVLET_SELECTORS+"=abc"})
public class SampleServlet extends SlingSafeMethodsServlet {
http://localhost:4502/content/mysite/en-us/some/application/page/_jcr_content.abc.json
As per the following post form Ankur_Khare, I checked servlet status it is in active state
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/invalid-recursion-selector-value-metadata-schema/qaq-p/318756
I checked resolver map in system console, path is getting resolved and mapped, however I am still getting the
incursion selector error

