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

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

https://www.cnblogs.com/sunniest/p/4555801.html

    //redirect 
    @RequestMapping("/redirect")
    public String redirect(){
        return "redirect:hello";
    }

     @RequestMapping("/hello")
     @ResponseBody
     public String hello(){
         return "Hello World!!!!!!!";
     }
     
   //http://localhost:8080/TrySpringMVC/person/redirect
   //redirect 
     @RequestMapping("/redirect")
     public String redirect(){
         return "redirect:hello";
     }

 

posted @ 2018-01-10 15:51  sky20080101  阅读(603)  评论(0)    收藏  举报