SpringBoot跳转网页的三种方法
程序员文章站
2022-05-18 08:09:26
...
1、使用ModelAndView
@RequestMapping("redirect")
public ModelAndView redirect(){
return new ModelAndView("redirect:http://www.baidu.com");
}
2、使用SpringMVC
@RequestMapping("redirect")
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();
}
}
上一篇: 一道html的面试题_html/css_WEB-ITnose
下一篇: php 本月、下月时间