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

SpringMVC重定向和转发

时间:2020-06-08 10:37:00      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:map   页面   for   test   方法   nbsp   直接   pre   rest   

1. forward 转发:地址栏不发生变化。在springmvc中直接转发的jsp页面不能是WEB-INF下面的页面,否者会出现404找不到页面。如果写全路径是可以的但是不好看了。我们可以另外写一个方法:

@RequestMapping("/rest")
    public String test2(Model model){

        model.addAttribute("msg","forward");
        return "forward:/redir";  //转发到另一个方法,另一个方法跳转到web-inf下面的页面
    }
    @RequestMapping("/redir")
    public String redirect(Model model){
        model.addAttribute("msg","forward");
        return  "hello";
    }

 

2. redirect重定向:和转发一样无法直接重定向到WEB-INF下面的页面,但同样可以间接跳转:

    @RequestMapping("/rest")
    public String test2(Model model){

        model.addAttribute("msg","forward");
        return "redirect:/redir";
    }
    @RequestMapping("/redir")
    public String redirect(Model model){
        model.addAttribute("msg","redirect");
        return  "hello";
    }

 

SpringMVC重定向和转发

标签:map   页面   for   test   方法   nbsp   直接   pre   rest   

原文地址:https://www.cnblogs.com/Difcipo/p/13064020.html

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