码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC框架学习笔记(4)——结果跳转方式

时间:2017-03-31 11:17:32      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:oid   res   att   ppi   string   redirect   std   图解   exception   

1.设置ModelAndView对象。根据View和视图解析器跳转到指定页面(视图解析器前缀+viewname+视图解析器后缀)

@Override
public ModelAndView handleRequest(HttpServletRequest req,
        HttpServletResponse resp) throws Exception {
    ModelAndView mv = new ModelAndView();
    mv.setViewName("hello");
    mv.addObject("msg", "first spring mvc app");
    return mv;
}

2.通过ServletAPI对象来实现,不需要配置视图解析器

通过HttpServletRequest输出

resp.getWriter().print("Use httpServletAPI");

通过HttpServletRequest实现重定向

@RequestMapping(value = "/hi.do")
public void hello(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {
    resp.sendRedirect("hello.jsp");
}

通过HttpServletRequest实现转发

@RequestMapping(value = "/hi.do")
public void hello(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {
    req.setAttribute("msg", "testRequestDispatcher");
    req.getRequestDispatcher("hello.jsp").forward(req, resp);
}

3.通过springMVC来实现重定向和转发

转发

@RequestMapping("/hi2")
public String hello2() {
    //转发1
    //return "index";
    //转发2
    return "forward:index.jsp";
}

重定向

@RequestMapping("/hi3.do")
public String hello3(ModelMap map) {
    map.addAttribute("msg", "helloworld");
    return "redirect:index.jsp";
}

 

SpringMVC框架学习笔记(4)——结果跳转方式

标签:oid   res   att   ppi   string   redirect   std   图解   exception   

原文地址:http://www.cnblogs.com/huangjian2/p/6650037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!