2种方法能够实现Java页面跳转_极悦注册
专注Java教育14年 全国咨询/投诉热线:444-1124-454
极悦LOGO图
始于2009,口口相传的Java黄埔军校
首页 学习攻略 Java学习 2种方法能够实现Java页面跳转

2种方法能够实现Java页面跳转

更新时间:2022-09-06 08:04:48 来源:极悦 浏览2803次

页面跳转分类有两种:重定向和转发,即redirect和forward。

具体区别和含义最后介绍,先给出使用方法。

1.重定向redirect

第一种方式:controller中返回值为String

public String login(HttpServletRequest req, HttpServletResponse resp)
return “redirect:http://localhost:8080/index”;

第二种方式:controller中返回值为void

public void login(HttpServletRequest req, HttpServletResponse resp)
resp.sendRedirect(“http://localhost:8080/index”);

第三种方式:controller中返回值为ModelAndView

return new ModelAndView(“redirect:/toList”);

2.转发forward

request.getRequestDispatcher("/index").forward(request, response);

 

提交申请后,顾问老师会电话与您沟通安排学习

免费课程推荐 >>
技术文档推荐 >>