
页面跳转分类有两种:重定向和转发,即redirect和forward。
一:重定向redirect
第一种方式:controller中返回值为String
相关免费学习视频分享:java在线学习
public String login(HttpServletRequest req, HttpServletResponse resp) return "redirect:http://localhost:8080/index";
第二种方式:controller中返回值为void
在 Java 中初始化和管理阿里云 SDK客户端。包括单例模式、线程安全、endpoint 与 region 配置、VPC 终端节点、同步与异步等。
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免费学习笔记:立即使用
解锁 Java 大师之旅:从入门到精通的终极指南










