手记

在Controller中使用redirect方式处理请求

 //使用redirect进行跳转
       @RequestMapping("/redirect")
    public String redirect(){
        return "redirect:hello";
    }
//使用forward跳转其他action
 @RequestMapping("/forward")
    public String redirect(){
        return "forward:hello";
    }
0人推荐
随时随地看视频
慕课网APP

热门评论

不好使啊,能不能交流一下


查看全部评论