当我在 servlet 中完成处理并且结果有效时,我需要将响应重定向到另一个 JSP 页面,比如welcome.jsp
在 web 内容文件夹中。我该怎么做?
例如:
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);
}
}