欢迎光临
我们一直在努力

java后端如何实现页面跳转

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

分享本文到
赞(0)
未经允许不得转载:爱分享 » java后端如何实现页面跳转

评论 抢沙发

爱分享,生活常用知识教程百科分享、学习、交流平台

爱分享精选好货商城