主页加载后,是否可以自动将用户重定向到第二个jsp页面?
答案 0 :(得分:26)
加载核心JSTL库<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
,您可以使用:
<c:redirect url="/home.html"/>
答案 1 :(得分:3)
有这样一个例子: JSP - Page Redirecting
最简单的是使用sendRedirect
:
public void response.sendRedirect(String location)
throws IOException