SpringMVC 几种页面跳转方式

本文详细介绍了SpringMVC中实现页面跳转的多种方式,包括直接使用HttpServletResponse输出、重定向、转发、直接返回jsp页面名称以及使用ModelAndView进行数据封装和视图跳转。适用于希望深入了解SpringMVC控制器响应机制的开发者。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

SpringMVC 几种页面跳转方式总结如下:

1.不使用ModelAndView
1)、通过HttpServletResponse的API直接输出(不需要配置渲染器)
@Controller
public class RequestController{
@RequestMapping("/resp")
public void test(HttpServletRequest req, HttpServletResponse resp) throws Exception {
resp.getWriter().println(“hello HttpServletResponse”);
}

2)、 使用HttpServletResponse 重定向到另一个视图(其他不变 )
@RequestMapping("/resp")
public void test(HttpServletRequest req, HttpServletResponse resp) throws Exception {
resp.sendRedirect(“index.jsp”);
}

3)、 使用HttpServletRequest 转发(默认访问/下的index.jsp页面 不受渲染器的影响)
@RequestMapping("/resp")
public void test(HttpServletRequest req, HttpServletResponse resp) throws Exception {
req.setAttribute(“message”,"it’s forword ");
req.getRequestDispatcher(“index.jsp”).forward(req,resp);
}

4)、直接返回jsp页面的名称(无渲染器)
@RequestMapping("/nice")
public String test(){
//转发方式1
return “home.jsp”;
//转发方式2
return “forward:index.jsp”;
//重定向方式
return “redirect:index.jsp”;
}

5)、当有渲染器指定
@RequestMapping("/nice")
public String hello1(){
//转发方式1
return “home”;
//转发方式2
return “forward:index”;
//重定向方式 hello指的是requsrmapping
return “redirect:hello”;
}

2、使用ModelAndView
@Override
public ModelAndView test(javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {
ModelAndView mv = new ModelAndView();
//封装要显示到视图的数据
mv.addObject(“msg”,“hello myfirst mvc”);
//通过视图名跳转
mv.setViewName(“hello”);

    return mv;


//跳转到服务器内部的一个功能处理方法
//return new ModelAndView("forward:test.jsp");
//重定向一个功能方法
//return new ModelAndView("redirect:test.jsp");

}

作者:志飞
转载人:a奔腾的心
来源:优快云
原文:https://blog.youkuaiyun.com/figo0423/article/details/79759151
版权声明:本文为博主原创文章,转载请附上博文链接!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值