码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot重定向的使用方法

时间:2018-10-06 21:28:16      阅读:617      评论:0      收藏:0      [点我收藏+]

标签:http   throws   ppi   end   throw   重定向   als   eth   false   

 1 @RequestMapping(value = "/redirect", method = RequestMethod.GET)
 2     public void redirecttest(@RequestParam(value = "account",required=false) String account,
 3                              @RequestParam(value = "pwd",required=false) String pwd,
 4                              HttpServletRequest request,
 5                              HttpServletResponse response) throws IOException {
 6         log.info(request.getHeader("Host"));
 7         if(account.equals("123456789@qq.com") && pwd.equals("123456")){
 8             response.sendRedirect("http://www.baidu.com");
 9         }
10     }

 

Spring Boot重定向的使用方法

标签:http   throws   ppi   end   throw   重定向   als   eth   false   

原文地址:https://www.cnblogs.com/andrew209/p/9748357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!