Change Post servlet from path to resourceTypes not work properly I'm currently migrating codes to AEM cloud.It's recommended to register servlet with resourceTypes, and I change my servlets from path to resourceTypes, but it doesn't work properly.E.g.Change Servlet from sling.servlet.paths to sling.servlet.resourceTypes=bin/pro/getUserTypeAdd nt:unstructure node at /etc/bin/getUserType with sling:resourType=bin/pro/getUserTypeWhen I test on servlet resolver, my servlet seems always under SlingPostServlet.When I test on page with localhost:4502/etc/bin/getUserType, with GET, it redirects to localhost:4502/etc/bin/getUserType/ then return proper value; while with POST, always return "Content modified /etc/bin/getUserType"Could you help check how fix that, and what's the best practice.