自动从一个JSP页面重定向到另一个JSP页面

时间:2013-09-02 15:01:34

标签: java jsp

主页加载后,是否可以自动将用户重定向到第二个jsp页面?

2 个答案:

答案 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