Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSP ページからサーブレットに自動リダイレクトする方法はありますか?
次のような別の JSP に対してこれを実行できることはわかっています。
<% response.addHeader("Refresh","4;./nexPage.jsp"); %>
このコードは、4 秒後にnexPage.jspにリダイレクトされます。
しかし、代わりに特定のサーブレットにリダイレクトしたいのです。
こちらでご確認いただけますでしょうか。
<meta http-equiv="refresh" content="5;URL=/servleturl">
これにより、5 秒後に指定されたサーブレット URL にリダイレクトされます。このタグを head タグの間に配置します。しかし、これはSEOフレンドリーではないと思います。
response.sendRedirect("サーブレット名");