从默认的index.jsp页面跳转或转发到其他页面

Posted wishriver

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从默认的index.jsp页面跳转或转发到其他页面相关的知识,希望对你有一定的参考价值。

使用forward还是redirect都可以完成跳转

   

 

forward:浏览器地址不变,所以存在重复提交的问题

   <%  pageContext.forward("student/list");   %>

redirect:改变地址

 <%  response.sendRedirect("student/list");  %>

以上是关于从默认的index.jsp页面跳转或转发到其他页面的主要内容,如果未能解决你的问题,请参考以下文章