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 页面自动重定向到 servlet?
我知道可以像这样对另一个 JSP 执行此操作:
<% response.addHeader("Refresh","4;./nexPage.jsp"); %>
此代码将在 4 秒后重定向到nexPage.jsp 。
但我希望它重定向到给定的 servlet。
你能检查一下吗。
<meta http-equiv="refresh" content="5;URL=/servleturl">
这将在 5 秒后重定向到给定的 servlet url。将此标签放在您的头部标签之间。但我认为这对 SEO 不友好。
response.sendRedirect("servletname");