public class SlingServlet extends javax.servlet.GenericServlet implements Notifiable
SlingServlet
is the externally visible Web Application
launcher for Sling. Please refer to the full description The Sling
Launchpad on the Sling Wiki for a full description of this class.
Logging goes to ServletContext.log methods.
This class goes into the secondary artifact with the classifier webapp to be used as the main servlet to be registered in the servlet container.
Constructor and Description |
---|
SlingServlet() |
Modifier and Type | Method and Description |
---|---|
void |
destroy()
Stop the Sling framework when the web application is being stopped
|
String |
getServletInfo() |
void |
init()
Launches the SLing framework if the sling.home setting can be derived
from the configuration or the SerlvetContext.
|
void |
service(javax.servlet.ServletRequest req,
javax.servlet.ServletResponse res)
If Sling has already been started, the request is forwarded to the
started Sling framework.
|
void |
stopped()
The framework has been stopped by calling the
Bundle.stop()
on the system bundle. |
void |
updated(File updateFile)
The framework has been stopped with the intent to be restarted by calling
either of the
Bundle.update methods on the system bundle. |
public void init()
init
in class javax.servlet.GenericServlet
public String getServletInfo()
getServletInfo
in interface javax.servlet.Servlet
getServletInfo
in class javax.servlet.GenericServlet
public void service(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res) throws javax.servlet.ServletException, IOException
If the request is not forwarded to Sling, this method returns a 404/NOT FOUND if the startup failure counter has exceeded or 503/SERVICE UNAVAILABLE if the Sling framework is starting up.
If a request causes the framework to start, it is immediately terminated with said response status and framework is started in a separate thread.
service
in interface javax.servlet.Servlet
service
in class javax.servlet.GenericServlet
javax.servlet.ServletException
IOException
public void destroy()
destroy
in interface javax.servlet.Servlet
destroy
in class javax.servlet.GenericServlet
public void stopped()
Bundle.stop()
on the system bundle. This actually terminates the Sling Standalone
application.
Note, that a new request coming in while the web application is still running, will actually cause Sling to restart !
stopped
in interface Notifiable
public void updated(File updateFile)
Bundle.update
methods on the system bundle.
If an InputStream
was provided, this has been copied to a
temporary file, which will be used in place of the existing launcher jar
file.
updated
in interface Notifiable
updateFile
- The temporary file to replace the existing launcher jar
file. If null
the existing launcher jar will be
used again.Copyright © 2015 The Apache Software Foundation. All rights reserved.