/* (non-Javadoc) * @see javax.servlet.jsp.PageContext#include(java.lang.String, boolean) */ public void include(String url, boolean b) throws ServletException, IOException { RequestUtil.include(getServletContext(), getRequest(), getResponse(), url); // make sure everything is flushed before doing an include -- important for included JSP files flushOut(); }
/* (non-Javadoc) * @see javax.servlet.jsp.PageContext#forward(java.lang.String) */ public void forward(String url) throws ServletException, IOException { RequestUtil.forward(getServletContext(), getRequest(), getResponse(), url); }