您好,欢迎访问一九零五行业门户网

java后端如何实现页面跳转

页面跳转分类有两种:重定向和转发,即redirect和forward。
一:重定向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后端如何实现页面跳转的详细内容。
其它类似信息

推荐信息