mrray
@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 "";
}

分类:

技术点:

相关文章:

  • 2022-01-14
  • 2021-05-03
  • 2022-12-23
  • 2021-12-07
  • 2021-05-15
  • 2022-01-02
  • 2021-06-22
  • 2021-12-12
猜你喜欢
  • 2021-07-23
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
  • 2022-03-04
  • 2022-01-15
  • 2021-06-28
相关资源
相似解决方案