正确打印servlet异常的stacktrace
我使用过滤器来捕获 servlet 异常(因为我们使用的是 jsf/plain servlet 的混合),
因此,当捕获 ServletException 并调用 printstacktrace 时,
大部分信息都会丢失。 “真正的”根异常似乎隐藏在“有趣的”表达后面,
((ServletException) e.getRootCause().getCause()).getRootCause().getCause().getCause().getCause()
这显然不是这样做的方法。
是打印此类异常的“完整”信息的简单方法。 有人可以解释一下为什么异常是这样包装的吗?
so i am using a filter to catch servlet exception (because we are using a mix of jsf/plain servlets)
when catching the ServletException and calling printstacktrace most of the information is lost.
the "true" root exception seems to be hidden behind the "funny" expression
((ServletException) e.getRootCause().getCause()).getRootCause().getCause().getCause().getCause()
this is clearly not the way to do it.
is the an easy way to print the "full" information of such an exception.
can someone explain me why the exception is wrapped this way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看一下 ExceptionUtils 来自 commons-lang 的类。 它包含几个用于打印整个异常链的有用方法。
Take a look at the ExceptionUtils class from commons-lang. It contains several useful methods for printing the entire chain of exceptions.
在我查看了 ExceptionUtils 之后,这解决了问题!
这会打印出包含每条相关信息的完整堆栈跟踪。
after i had a look at ExceptionUtils, this solved the problem!
this prints out the full stacktrace with every piece of information that is relevant.
这称为异常链接。 通过将异常包装在不同的异常中,您可以让异常在堆栈中向上冒泡,而无需主应用程序类担心某些低级异常。
示例:
这样您的应用程序只需处理
StuffException
,但如果确实需要,它可以获取底层DatabaseException
。要找到您捕获的异常的最底层(以及所有其他)异常,您可以迭代其根本原因:
That is called exception chaining. By wrapping an exception in a different exception you can let exceptions bubble up the stack without having your main application classes to worry about some low-level exceptions.
Example:
This way your application only has to handle
StuffException
but it can get to the underlyingDatabaseException
if it really needs to.To get to the bottom-most (and all other) exception(s) of an exception you caught you can iterator over its root causes:
ServletException 的异常链接很棘手。 根据所使用的 Web 服务器实现和 Web 开发框架,运行时链可能会使用 Cause 和/或 rootCause。 这个链接很好地解释了这一点。 让事情变得复杂的是,我见过一些异常,其中原因指向异常本身。
这是我们使用的递归方法,涵盖了 ServletExceptions 的所有基础:
Exception chaining for ServletException is tricky. Depending on the web server implementation and web development framework in use, at runtime the chain may use cause and/or rootCause. This link explains it very well. To complicate things, I've seen exceptions where the cause points to the exception itself.
Here's a recursive method we have used that covers all bases for ServletExceptions: