美文网首页
在Spring中获取用户IP

在Spring中获取用户IP

作者: 即墨灯火 | 来源:发表于2017-12-18 00:59 被阅读14次
##  暂时没明白和request.getRemoteAddr()有什么区别……

public String getIpAddr(HttpServletRequest request) {     
           String ip = request.getHeader("x-forwarded-for");     
           if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {     
               ip = request.getHeader("Proxy-Client-IP");     
           }     
           if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {     
               ip = request.getHeader("WL-Proxy-Client-IP");     
           }     
           if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {     
               ip = request.getRemoteAddr();     
               if(ip.equals("127.0.0.1")){       
                   //根据网卡取本机配置的IP       
                   InetAddress inet=null;       
                   try {       
                       inet = InetAddress.getLocalHost();       
                   } catch (Exception e) {       
                       e.printStackTrace();       
                   }       
                   ip= inet.getHostAddress();       
               }    
           }     
           // 多个代理的情况,第一个IP为客户端真实IP,多个IP按照','分割    
           if(ip != null && ip.length() > 15){      
               if(ip.indexOf(",")>0){       
                   ip = ip.substring(0,ip.indexOf(","));       
               }       
           }       
           return ip;     
}    

相关文章

网友评论

      本文标题:在Spring中获取用户IP

      本文链接:https://www.haomeiwen.com/subject/jckpwxtx.html