欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【jsp】页面跳转的两种方法

程序员文章站 2022-05-13 23:12:41
...

注:由index.jxp跳转到Failure.jsp

request.getSession().setAttribute("msg", "45654");

方法一:

response.sendRedirect("Failure.jsp");

特点:

(1)不能传值

(2)地址跳转

方法二:

Index.jsp

request.getSession().setAttribute("msg", "45654");
	request.getRequestDispatcher("Failure.jsp").forward(request, response);

Failure.jsp

Object o =request.getSession().getAttribute("msg");
	out.print(o);

特点:

(1)可以传值

(2)地址不跳转