【发布时间】:2012-11-17 07:16:38
【问题描述】:
当我在 servlet 中完成处理并且结果有效时,我需要将响应重定向到另一个 JSP 页面,例如 Web 内容文件夹中的 welcome.jsp。我该怎么做?
例如:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {
// Some processing code here ...
// How do I redirect to another JSP here when I'm ready?
} catch (Exception e) {
throw new ServletException(e);
}
}
【问题讨论】: