public class HttpRequestHandlerServlet extends HttpServlet
HttpRequestHandler
bean defined
in Spring's root web application context. The target bean name must match the
HttpRequestHandlerServlet servlet-name as defined in web.xml
.
This can for example be used to expose a single Spring remote exporter,
such as HttpInvokerServiceExporter
or HessianServiceExporter
,
per HttpRequestHandlerServlet definition. This is a minimal alternative
to defining remote exporters as beans in a DispatcherServlet context
(with advanced mapping and interception facilities being available there).
HttpRequestHandler
,
DispatcherServlet
,
Serialized FormConstructor and Description |
---|
HttpRequestHandlerServlet() |
Modifier and Type | Method and Description |
---|---|
void |
init()
A convenience method which can be overridden so that there's no need
to call
super.init(config) . |
protected void |
service(HttpServletRequest request,
HttpServletResponse response)
Receives standard HTTP requests from the public
service method and dispatches
them to the do XXX methods defined in
this class. |
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
public void init() throws ServletException
javax.servlet.GenericServlet
super.init(config)
.
Instead of overriding GenericServlet.init(ServletConfig)
, simply override
this method and it will be called by
GenericServlet.init(ServletConfig config)
.
The ServletConfig
object can still be retrieved via GenericServlet.getServletConfig()
.
init
in class GenericServlet
ServletException
- if an exception occurs that
interrupts the servlet's
normal operationprotected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOException
javax.servlet.http.HttpServlet
service
method and dispatches
them to the do
XXX methods defined in
this class. This method is an HTTP-specific version of the
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
method. There's no
need to override this method.service
in class HttpServlet
request
- the HttpServletRequest
object that
contains the request the client made of
the servletresponse
- the HttpServletResponse
object that
contains the response the servlet returns
to the clientServletException
- if the HTTP request
cannot be handledjava.io.IOException
- if an input or output error occurs
while the servlet is handling the
HTTP requestServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)