SpringBoot跳转网页的三种方法

下面三个方法均在该类中:

@Controller
public class TestController {
    ......
}

 

1、使用ModelAndView

    @RequestMapping("redirect")
    public ModelAndView redirect(){
        return new ModelAndView("redirect:http://www.baidu.com");
    }

2、使用SpringMVC

    @RequestMapping("redirect2")
    public String redirect(){
        return"redirect:http://www.baidu.com";
    }

3、使用HttpServletResponse 

    @RequestMapping("/send")
    public void sendInfoToWeiXin(HttpServletResponse response){
        try {
            response.sendRedirect("http://www.baidu.com");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

你可能感兴趣的:(SpringBoot2.0踩坑)