java后端如何实现页面跳转

java后端如何实现页面跳转,第1张

java后端如何实现页面跳转

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

一:重定向redirect

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

相关免费学习视频分享:java在线学习

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");

二:转发forward

例如:

request.getRequestDispatcher("/student_list.jsp").forward(request, response);

相关文章教程推荐:java入门教程

以上就是java后端如何实现页面跳转的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/688931.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-21
下一篇 2022-04-21

发表评论

登录后才能评论

评论列表(0条)

保存