springboot 项目接口重定向

通过地址访问项目接口,重定向至百度网页

springboot 项目接口重定向_第1张图片

 

@GetMapping(value = "/test")
	public ModelAndView test()  {
		ModelAndView modelAndView = new ModelAndView(new RedirectView("http://www.baidu.com"));
		return modelAndView;
	}

http://项目/test    ====>重定向 =======>http://www.baidu.com

你可能感兴趣的:(springboot)