有没有可能在加载主页后立即将用户自动重定向到第二个JSP页面?
qjp7pelc1#
加载了<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>的核心JSTL库后,您可以用途:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:redirect url="/home.html"/>
sz81bmfz2#
有这样一件事的例子:JSP - Page Redirecting最简单的方法是使用sendRedirect:
sendRedirect
public void response.sendRedirect(String location) throws IOException
2条答案
按热度按时间qjp7pelc1#
加载了
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
的核心JSTL库后,您可以用途:sz81bmfz2#
有这样一件事的例子:JSP - Page Redirecting
最简单的方法是使用
sendRedirect
: