Package org.eclipse.jetty.servlet
Class JspPropertyGroupServlet
java.lang.Object
javax.servlet.GenericServlet
org.eclipse.jetty.servlet.JspPropertyGroupServlet
- All Implemented Interfaces:
Serializable,Servlet,ServletConfig
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
Servlet handling JSP Property Group mappings
This servlet is mapped to by any URL pattern for a JSP property group. Resources handled by this servlet that are not directories will be passed directly to the JSP servlet. Resources that are directories will be passed directly to the default servlet.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJspPropertyGroupServlet(ContextHandler context, ServletHandler servletHandler) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoidinit()Deprecated.A convenience method which can be overridden so that there's no need to callsuper.init(config).voidservice(ServletRequest req, ServletResponse res) Deprecated.Called by the servlet container to allow the servlet to respond to a request.Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
Field Details
-
NAME
Deprecated.- See Also:
-
-
Constructor Details
-
JspPropertyGroupServlet
Deprecated.
-
-
Method Details
-
init
Deprecated.Description copied from class:GenericServletA convenience method which can be overridden so that there's no need to callsuper.init(config).Instead of overriding
GenericServlet.init(ServletConfig), simply override this method and it will be called byGenericServlet.init(ServletConfig config). TheServletConfigobject can still be retrieved viaGenericServlet.getServletConfig().- Overrides:
initin classGenericServlet- Throws:
ServletException- if an exception occurs that interrupts the servlet's normal operation
-
service
Deprecated.Description copied from class:GenericServletCalled by the servlet container to allow the servlet to respond to a request. SeeServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse).This method is declared abstract so subclasses, such as
HttpServlet, must override it.- Specified by:
servicein interfaceServlet- Specified by:
servicein classGenericServlet- Parameters:
req- theServletRequestobject that contains the client's requestres- theServletResponseobject that will contain the servlet's response- Throws:
ServletException- if an exception occurs that interferes with the servlet's normal operation occurredIOException- if an input or output exception occurs
-