Created
November 14, 2016 09:12
-
-
Save ghostsf/2c5f18d264313ce1cd804bff50e7c7dd to your computer and use it in GitHub Desktop.
IPKit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.servlet.http.HttpServletRequest; | |
public class IpKit { | |
public static String getRealIp(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(); | |
} | |
return ip; | |
} | |
public static String getRealIpV2(HttpServletRequest request) { | |
String accessIP = request.getHeader("x-forwarded-for"); | |
if (null == accessIP) | |
return request.getRemoteAddr(); | |
return accessIP; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment