当前位置:   article > 正文

springboot 获取客户端IP地址方法_spring websocket获取ip

spring websocket获取ip

在使用springboot时,需要获取访问客户端的IP地址,

  1. //获取客户端IP地址
  2. private String getIpAddress() {
  3. String ip = request.getHeader("x-forwarded-for");
  4. if(ip == null || ip.length() == 0 || "unknow".equalsIgnoreCase(ip)) {
  5. ip = request.getHeader("Proxy-Client-IP");
  6. }
  7. if (ip == null || ip.length () == 0 || "unknown".equalsIgnoreCase (ip)) {
  8. ip = request.getHeader ("WL-Proxy-Client-IP");
  9. }
  10. if (ip == null || ip.length () == 0 || "unknown".equalsIgnoreCase (ip)) {
  11. ip = request.getRemoteAddr ();
  12. if (ip.equals ("127.0.0.1")) {
  13. //根据网卡取本机配置的IP
  14. InetAddress inet = null;
  15. try {
  16. inet = InetAddress.getLocalHost ();
  17. } catch (Exception e) {
  18. e.printStackTrace ();
  19. }
  20. ip = inet.getHostAddress ();
  21. }
  22. }
  23. // 多个代理的情况,第一个IP为客户端真实IP,多个IP按照','分割
  24. if (ip != null && ip.length () > 15) {
  25. if (ip.indexOf (",") > 0) {
  26. ip = ip.substring (0, ip.indexOf (","));
  27. }
  28. }
  29. return ip;
  30. }

在windows7 使用localshot访问时,获取到的IP地址为0:0:0:0:0:1  原因是localhost解析不出来 需要使用正常的IP地址访问时,则可正确的得到访问client端的IP地址

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/405721
推荐阅读
相关标签
  

闽ICP备14008679号