| javax.servlet.http.HttpServlet org.springframework.web.context.support.HttpRequestHandlerServlet
HttpRequestHandlerServlet | public class HttpRequestHandlerServlet extends HttpServlet (Code) | | Simple HttpServlet that delegates to an HttpRequestHandler bean defined
in Spring's root web application context. The 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 and HessianServiceExporter, per
HttpRequestHandlerServlet definition. This is an alternative to defining
remote exporters as beans in a DispatcherServlet context, leveraging
the advanced mapping and interception facilities there.
author: Juergen Hoeller since: 2.0 See Also: org.springframework.web.HttpRequestHandler See Also: org.springframework.web.servlet.DispatcherServlet |
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|