struts 2 操作类中的客户端详细信息
只是想知道如果外部应用程序调用我的基于 Struts 2.2 的操作类,是否可以了解以下详细信息。 1. 发起调用的客户端的IP和系统名称 2. 可能作为 http 请求的一部分传入的任何其他客户端详细信息。
谢谢
just wanted to know if it's possible to know the following details if an external application makes a call to my Struts 2.2 based action class.
1. The IP and system name of the client that made the call
2. Any other client details that may have come in as a part of http request.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序容器的访问日志将记录基本请求信息。
如果您想要更多信息,有多种方法可以实现,包括标准 servlet 过滤器(IMO 可能是最好的主意,因为它不依赖于 S2 框架)或 Struts 2 拦截器。两者都可以记录您需要的任何特定信息,包括来自会话的信息(例如,特定于应用程序的用户ID)。
Your app container's access log will log basic request info.
If you want more info than that, there are a variety of ways to do it, including a standard servlet filter (IMO probably the best idea, since it's not tied to the S2 framework) or a Struts 2 interceptor. Either could log whatever specific information you need, including information from the session (e.g., an application-specific user ID).