配置 Websphere 不包装从 Filter.doFilter 抛出的 RuntimeExceptions
使用 Websphere 7.0 时,从 Filter.doFilter
抛出的 RuntimeException
被包装在 ServletException
中,而不是按原样传播。
有没有什么方法可以配置 Websphere 抛出原始异常而不是包装它?
When working with Websphere 7.0, RuntimeException
s thrown from the Filter.doFilter
are wrapped in a ServletException
, instead of being propagated as they are.
Is there any way of configuring Websphere to throw the original exception instead of wrapping it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,因为那样应用程序容器将不知道如何处理它们。
如果您有自己的错误处理程序,只需使用 getCause() 即可获取原始异常。
No because then the app container wouldn't know how to handle them.
Just use
getCause()
to get the original exception if you have your own error handler.