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