13

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

4

2 回答 2

28

加载核心 JSTL 库后<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>,您可以使用:

<c:redirect url="/home.html"/>
于 2013-09-02T15:09:56.143 回答
3

有一个这样的例子: JSP - Page Redirecting

最简单的是使用sendRedirect

public void response.sendRedirect(String location)
throws IOException 
于 2013-09-02T16:52:41.863 回答