接缝 - 拦截器
我想拦截对所有接缝组件的所有方法调用,看看这是否有助于记录异常。我想我可以通过获取所有组件和注册拦截器的列表并简单地将我想要的组件添加到该列表中来做到这一点。
沃尔特
I want to intercept all method invocations to all seam components to see if that would help in logging exceptions. I was thinking that I could do this by getting the list of all components and registered interceptors and simply adding the one I want to that list.
Walter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好使用 Seam 的异常处理程序。
您可以这样做:
Its better to use Seam's Exception handler.
This is how you can do it:
尝试以更高的优先级使用您自己的 ExceptionFilter 覆盖默认的 ExceptionFilter。
Try to override the default ExceptionFilter with your own at a higher precedence.