| javax.servlet.http.HttpServlet com.opensymphony.webwork.views.JspSupportServlet
JspSupportServlet | public class JspSupportServlet extends HttpServlet (Code) | | A servlet that means to expose itself through a public static member
variable such that its
ServletContext could be accessible.
An example of configuration in web.xml would be :-
<servlet>
<servlet-name>jspSupportServlet\</servlet-name>
<servlet-class>com.opensymphony.webwork.views.JspSupportServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
author: plightbo version: $Date: 2007-02-16 08:15:36 +0100 (Fri, 16 Feb 2007) $ $Id: JspSupportServlet.java 2846 2007-02-16 07:15:36Z tm_jee $ |
Method Summary | |
public void | init(ServletConfig servletConfig) This method merely expose this servlet as a public static member variable
called 'jspSupportServlet'. |
init | public void init(ServletConfig servletConfig) throws ServletException(Code) | | This method merely expose this servlet as a public static member variable
called 'jspSupportServlet'.
|
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)
|
|
|