| javax.servlet.http.HttpServlet org.springframework.web.servlet.ViewRendererServlet
ViewRendererServlet | public class ViewRendererServlet extends HttpServlet (Code) | | ViewRendererServlet is a bridge servlet, mainly for the Portlet MVC support.
For usage with Portlets, this Servlet is necessary to force the portlet container
to convert the PortletRequest to a ServletRequest, which it has to do when
including a resource via the PortletRequestDispatcher. This allows for reuse
of the entire Servlet-based View support even in a Portlet environment.
The actual mapping of the bridge servlet is configurable in the DispatcherPortlet,
via a "viewRendererUrl" property. The default is "/WEB-INF/servlet/view", which is
just available for internal resource dispatching.
author: William G. Thompson, Jr. author: John A. Lewis author: Juergen Hoeller since: 2.0 |
MODEL_ATTRIBUTE | final public static String MODEL_ATTRIBUTE(Code) | | Name of request attribute that holds the model Map
|
VIEW_ATTRIBUTE | final public static String VIEW_ATTRIBUTE(Code) | | Name of request attribute that holds the View object
|
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)
|
|
|