ServletsPage edited by Bertrand DelacretazChanges (1)
Full ContentServlets and ScriptsServlets can be registered as OSGi services. The following service reference properties are defined for Servlets defined as OSGi services of type javax.servlet.Servlet:
A SlingServletResolver listens for Servletservices and - given the correct service registration properties - provides the servlets as resources in the (virtual) resource tree. Such servlets are provided as ServletResource instances which adapt to the javax.servlet.Servlet class. For a Servlet registered as an OSGi service to be used by the Sling Servlet Resolver, the either or both of the sling.servlet.paths or the sling.servlet.resourceTypes service reference properties must be set. If neither is set, the Servlet service is ignored. Each path to be used for registration - either from the sling.servlet.paths property or constructed from the other sling.servlet.* properties - must be absolute. Any relative path is made absolute by prefixing it with a root path. This prefix may be set with the sling.servlet.prefix service registration property. If this property is not set, the first entry in the ResourceResolver search path for the ResourceResolver.getResource(String) method is used as the prefix. If this entry cannot be derived, a simpe slash - / - is used as the prefix. If sling.servlet.methods is not specified, the servlet is only registered for handling GET requests. Make sure to list all methods you want to be handled by this servlet. Automated testsThe launchpad/test-services module contains test servlets that use various combinations of the above properties. The launchpad/integration-tests module contains a number of tests (like the ExtensionServletTest for example) that verify the results. Such tests run as part of our continuous integration process, to demonstrate and verify the behavior of the various servlet registration mechanisms, in a way that's guaranteed to be in sync with the actual Sling core code. If you have an idea for additional tests, make sure to let us know! Example: Registration by Pathsling.servlet.paths = \[ "/libs/sling/sample/html", "/libs/sling/sample/txt" \] sling.servlet.resourceTypes = \[ "sling/unused" \] sling.servlet.selectors = \[ "img" \] sling.servlet.extensions = \[ "html", "txt", "json" \]
The registration properties sling.servlet.resourceTypes, sling.servlet.selectors and sling.servlet.extensions are ignored because the sling.servlet.paths property is set. Example: Registration by Resource Type etc.sling.servlet.resourceTypes = \[ "sling/unused" \] sling.servlet.selectors = \[ "img", "tab" \] sling.servlet.extensions = \[ "html", "txt", "json" \] A Servlet service registered with these properties is registered under the following paths:
As explained the Servlet is registered for each permutation of the resource types, selectors and extension. See above For an explanation of how prefix is defined. Scripts are ServletsThe Sling API defines a SlingScript interface which is used to represent (executable) scripts inside of Sling. This interface is implemented in the scripting/core bundle in the DefaultSlingScript class which also implements the javax.servlet.Servlet. To further simplify the access to scripts from the Resource tree, the scripting/core bundle registers an AdapterFactory to adapt Resources to Scripts and Servlets (the SlingScriptAdapterFactory). In fact the adapter factory returns instances of the DefaultSlingScript class for both Scripts and Servlets. From the perspective of the Servlet resolver, scripts and servlets are handled exactly the same. In fact, internally, Sling only handles with Servlets, whereas scripts are packed inside a Servlet wrapping and representing the script. Default Servlet(s)As explained in the Resolution Process section above, a default Servlet is selected if no servlet (or script) for the current resource type can be found. To make the provisioning of a default Servlet as versatile as provisioning per resource type Servlets (or scripts), the default Servlet is selected with just a special resource type sling/servlet/default. The actual Servlet or Script called as the default Servlet is resolved exactly the same way as for any resource type. That is, also for the default Servlet selection, the request selectors and extension or method are considered. Also, the Servlet may be a Servlet registered as an OSGi service or it may be a Script stored in the repository or provided by any bundle. Finally, if not even a registered default Servlet may be resolved for the request, because none has been registered, the servlets/resolver bundle provides a fall back the DefaultServlet with the following functionality:
OptingServlet interfaceIf a registered servlet implements the OptingServlet interface, Sling uses that servlet's accepts(SlingHttpServletRequest request) method to refine the servlet resolution process. In this case, the servlet is only selected for processing the current request if its accept method returns true. Error Handler Servlet(s) or ScriptsError handling support is now described on the Errorhandling page.
Change Notification Preferences
View Online
|
View Changes
|
Add Comment
|
- [CONF] Apache Sling Website > Servlets confluence
- [CONF] Apache Sling Website > Servlets confluence
