配置 Websphere 不包装从 Filter.doFilter 抛出的 RuntimeExceptions

发布于 2024-09-13 19:29:43 字数 181 浏览 2 评论 0原文

使用 Websphere 7.0 时,从 Filter.doFilter 抛出的 RuntimeException 被包装在 ServletException 中,而不是按原样传播。

有没有什么方法可以配置 Websphere 抛出原始异常而不是包装它?

When working with Websphere 7.0, RuntimeExceptions 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘年祭陌 2024-09-20 19:29:43

不,因为那样应用程序容器将不知道如何处理它们。

如果您有自己的错误处理程序,只需使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文