码迷,mamicode.com
首页 > 其他好文 > 详细

重定向与转发

时间:2020-01-22 01:17:38      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:nal   通过   ppi   str   war   for   red   ring   xxx   

重定向与转发

不使用视图解析器InternalResourceViewResolver, 实现重定向与转发

@Controller
public class ModelTest01 {
    @RequestMapping("/m1/test1")
    public String test1(Model model) {
        model.addAttribute("msg", "大头儿子");
        //return "/WEB-INF/jsp/test.jsp";//默认转发
        //return "forward:/WEB-INF/jsp/test.jsp";//转发
        return "redirect:/index.jsp";//重定向
    }
}

一般还是通过视图解析器拼接并转发, 使用return "redirect:/xxx.jsp" 则不经过视图解析器实现跳转

重定向与转发

标签:nal   通过   ppi   str   war   for   red   ring   xxx   

原文地址:https://www.cnblogs.com/pinked/p/12227519.html

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