我正在尝试使用以下方式获取用户主机,IP和端口:
request.getRemoteHost()
request.getRemoteAddr()
request.getRemotePort()
但我得到了:
主持人: 0:0:0:0:0:0:0:1
IP:地址null
端口: 51111
如何获取正确的IP地址,注意我们的网络IP以10.100.x.x开头
非常感谢。
答案 0 :(得分:8)
如果您在请求URI中使用localhost
,则IPv6为0:0:0:0:0:0:0:1
。不要使用localhost
,而是在请求URI中使用IPv4来获取正确的 IP。