new427.jsp
<%--
Created by IntelliJ IDEA.
User: user1
Date: 2022/7/18
Time: 22:24
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<%
System.out.print("跳转前:<br>");
%>
<jsp:forward page="new428_forwardpage.jsp"></jsp:forward>
<%
System.out.print("跳转后;<br>");
%>
</body>
</html>