java spring boot 跳转

2021/5/7 12:25:22

本文主要是介绍java spring boot 跳转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

@RequestMapping("/TestLink1")
@GetMapping
@PostMapping
@ResponseBody
public ModelAndView TestLink1()
{
    ModelAndView modelAndView = new ModelAndView();
    modelAndView.setViewName("TestLink2");
    modelAndView.addObject("key222", 12345);
    return modelAndView;

}
@RequestMapping("/TestLink2")
@GetMapping
@PostMapping
@ResponseBody
public String TestLink2(@RequestParam(required = true, defaultValue = "") String key222)
{
    return key222;
}


@RequestMapping("/TestLink3")
@GetMapping
@PostMapping
@ResponseBody
public ModelAndView  TestLink3()
{
    return new ModelAndView("redirect:http://www.baidu.com");

}
@RequestMapping("/TestLink4")
@GetMapping
@PostMapping
public String  TestLink4()
{
   return "redirect:http://www.baidu.com";
}
@RequestMapping("/TestLink5")
@GetMapping
@PostMapping
public String TestLink5(HttpServletResponse response)
{
    try {
        response.sendRedirect("http://www.baidu.com");
    } catch (IOException e)
    {
        e.printStackTrace();
    }
    return  "";
}


这篇关于java spring boot 跳转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程