JSP - 页面重定向


在本章中,我们将讨论使用 JSP 进行页面重定向。当文档移动到新位置并且我们需要将客户端发送到这个新位置时,通常会使用页面重定向。这可能是因为负载平衡,或者是简单的随机化。

将请求重定向到另一个页面的最简单方法是使用响应对象的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 http://localhost:8080/PageRedirect.jsp调用此 JSP 。这会将您带到给定的 URL http://www.photofuntoos.com