如何在struts2操作方法中获取客户端IP地址?
有没有办法在struts2操作方法中获取客户端的IP地址?
我已经实现了 SesionAware
和 RequestAware
接口,但这两个接口仅注入会话和请求映射。
Is there a way to get the client's IP address inside an struts2 action method?
I have implemented both SesionAware
and RequestAware
interfaces, but these two inject only the session and request maps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试过ServletRequestAware?
Have you tried ServletRequestAware?
尝试 request.getRemoteAddress()。这将为您提供客户端 IP。如果请求是通过代理服务器发出的,那么您将只能获得代理服务器的 IP。
Try request.getRemoteAddress(). This will give you the client IP. If the request is coming through a proxy server, then you will get only the ip of the proxy server.
您可以尝试 ServletRequest.getRemoteAddress() API 调用来获取客户端或最后一个代理的 IP 地址。这是 Servlet API 的一部分,而不是 Struts2 特有的。
You can try ServletRequest.getRemoteAddress() API call to get client or last proxy's IP address. This is part of Servlet API and not Struts2 specific.