使用过滤器记录来自 flex / BlazeDS 客户端的所有请求
我有一个 Spring BlazeDS 集成应用程序。我想记录所有请求。
我打算使用过滤器。当我检查请求参数时,在我的过滤器中。它不包含与客户端请求相关的任何内容。如果我更改过滤器的顺序(我有 spring Security),那么它会打印一些与 spring security 相关的内容。
我无法记录用户请求。
任何帮助表示赞赏。
I have a spring BlazeDS integration application. I would like to log all the request.
I planned to use Filter. In my filter when I check the request parameter. It does not contain anything related to the client request. If I change the order of my filter(I have spring Security), then it prints some thing related to spring security.
I am unable to log the user request.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 AOP (AspectJ) 将记录器语句注入通信端点方法来完成相同的功能。 -- 希望这对您来说也是一种替代方法。
I have done the same functionality by using AOP (AspectJ) to inject a logger statement into communication endpoint methods. -- May this is an alternative approach for you too.