JSP - 页面跳转



本章我们将讨论通过 JSP 进行页面重定向。页面重定向通常在文档移动到新的位置,而我们需要将客户端发送到此新位置时使用。这可能是由于负载均衡或出于简单的随机化。

将请求重定向到另一页的最简单方法是使用 response 对象的 sendRedirect() 方法。以下是此方法的签名 −

public void response.sendRedirect(String location)
throws IOException 

此方法将响应和状态代码及新页面位置一并发回给浏览器。你还可以同时使用 setStatus()setHeader() 方法来实现相同的重定向示例 −

....
String site = "http://www.newpage.com" ;
response.setStatus(response.SC_MOVED_TEMPORARILY);
response.setHeader("Location", site); 
....

示例

此示例展示了 JSP 如何执行页面重定向到另一个位置 −

<%@ page import = "java.io.*,java.util.*" %>

<html>
   <head>
      <title>Page Redirection</title>
   </head>
   
   <body>
      <center>
         <h1>Page Redirection</h1>
      </center>
      <%
         // New location to be redirected
         String site = new String("http://www.photofuntoos.com");
         response.setStatus(response.SC_MOVED_TEMPORARILY);
         response.setHeader("Location", site); 
      %>
   </body>
</html>

现在将上述代码放入 PageRedirect.jsp 并使用 URL https://127.0.0.1:8080/PageRedirect.jsp 调用此 JSP。这会将你带到给定的 URL http://www.photofuntoos.com

广告