Stacktrace folding in Eclipse
I work on a project that has a lot of AOP-style aspects and interceptors. Calls between our services tend to have a lot of "junk" between them in st开发者_Python百科ack traces, and it makes reading them unnecessarily wordy, especially when debugging.
Is there a way to get the stack trace view in Eclipse to only show the classes that are under a certain domain or currently loaded?
Couldn't you use AOP to intercept the calls to Throwable.getStackTace() and modify the return value to eliminate certain packages or classes based on some criteria?
精彩评论