Diagnosing spring wiring problems usually involves digging through very long messages in the stack trace that look like:
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'foo' defined in class path resource [blah/blah/Foo.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [blah.blah.Foo]: Factory method 'foo' threw exception; nested exception is ... [five more of these because your wiring is Byzantine] nested exception is [your real problem]
Are there any tools/techniques to make seeing those errors easier? The silly pain point is mostly that the message is one very long line that scrolls way off to the right in the IDE's console (in this case IntelliJ) and the punch line is always at the end.
I'm imagining possibly a plugin for friendlier stack trace display, or maybe something with specific spring smarts.



