页面跳转

1.页面-标签跳转

  <a href="url">

2.服务端-请求转发

  request.getRequestDispatcher(url).forward

3.服务端-重定向

  response.sendRedrect(url)4.页面-jsp标准动作

  <jsp:forward page="url"></jsp:forward>

原文地址:https://www.cnblogs.com/hackxiyu/p/6856714.html