在servlet中如何指定jsp

在servlet中如何指定jsp
---------------------------------------------------------------

RequestDispatcher dispatcher =
getServletContext().getRequestDispatcher("next.jsp");
if (dispatcher != null)
dispatcher.forward();
}

Published At
Categories with Web编程
comments powered by Disqus