1 package com.opensymphony.webwork.views;2 3 import javax.servlet.ServletConfig ;4 import javax.servlet.ServletException ;5 import javax.servlet.http.HttpServlet ;6 7 /**8 * User: plightbo9 * Date: Jun 25, 200510 * Time: 8:27:24 AM11 */12 public class JspSupportServlet extends HttpServlet {13 public static JspSupportServlet jspSupportServlet;14 15 public void init(ServletConfig servletConfig) throws ServletException {16 super.init(servletConfig);17 18 jspSupportServlet = this;19 }20 }21