Spring Boot重定向的使用方法
2021-05-16 18:28
标签:http throws ppi end throw 重定向 als eth false Spring Boot重定向的使用方法 标签:http throws ppi end throw 重定向 als eth false 原文地址:https://www.cnblogs.com/andrew209/p/9748357.html 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 }
下一篇:java美文欣赏
文章标题:Spring Boot重定向的使用方法
文章链接:http://soscw.com/index.php/essay/86362.html