サーブレットでの処理が完了し、結果が有効になったら、応答を別の 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);
}
}