HttpServletRequest httpServletRequest = ((ServletRequestAttributes)
RequestContextHolder.currentRequestAttributes()).getRequest();
log.info("---------------------------------------------------------");
log.info(httpServletRequest.getRequestURL()+"");
log.info(httpServletRequest.getRemoteAddr());
log.info(httpServletRequest.getQueryString());
log.info("---------------------------------------------------------");
String userIp = publicService.getRequestIp(httpServletRequest);
log.info("请求来自:{}",userIp);
public String getRequestIp(HttpServletRequest request){
String ipAddress = null;
try {
ipAddress = request.getHeader("x-forwarded-for");
if (ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
ipAddress = request.getHeader("Proxy-Client-IP");
}
if (ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
ipAddress = request.getHeader("WL-Proxy-Client-IP");
}
if (ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
ipAddress = request.getRemoteAddr();
if (ipAddress.equals("127.0.0.1")) {
// 根据网卡取本机配置的IP
InetAddress inet = null;
try {
inet = InetAddress.getLocalHost();
} catch (Exception e) {
e.printStackTrace();
}
ipAddress = inet.getHostAddress();
}
}
// 对于通过多个代理的情况,第一个IP为客户端真实IP,多个IP按照','分割
if (ipAddress != null && ipAddress.length() > 15) { // "***.***.***.***".length()
// = 15
if (ipAddress.indexOf(",") > 0) {
ipAddress = ipAddress.substring(0, ipAddress.indexOf(","));
}
}
} catch (Exception e) {
ipAddress="";
}
// ipAddress = this.getRequest().getRemoteAddr();
return ipAddress;
}
相关文章
- 01-26.net core获取服务器本地IP及Request访问端口
- 01-26Java MyBatis 创建SqlSessionFactory和获取SqlSession的方法及示例代码
- 01-26数据访问函数库的使用方法(二)—— 获取记录集和使用事务的方法
- 01-26用DHCP获取IP地址,使相关PC可以互相访问 20210105
- 01-26关于获取本机IP地址的几种方法
- 01-26Windows下获取本机IP地址方法介绍
- 01-26dotnet获取本机IP地址方法
- 01-26获取客户端Ip地址方法
- 01-26Spring注入静态变量的方法,以及CXF如何获取客户端IP
- 01-26C++通过域名获取IP地址的方法;调试通过!