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入门教程

相关文章

摘要: 原创出处 https://www.bysocket.com 「公众号:泥瓦匠...
摘要: 原创出处 https://www.bysocket.com 「公众号:泥瓦匠...
今天犯了个错:“接口变动,伤筋动骨,除非你确定只有你一个...
Writer :BYSocket(泥沙砖瓦浆木匠)微 博:BYSocket豆 瓣:...
本文目录 线程与多线程 线程的运行与创建 线程的状态 1 线程...