Reputation: 1239
I've been asked as part of our project handover documentation to come up with a diagram/chart of our spring bean injection relationships. For reasons too long to go into here, we're not using auto wiring but have defined a large number of beans in an application context XML file.
Before I dust off my copy of Visio and slog my way through this task, is there a tool/eclipse plugin that can do this? Google searches have not turned anything up.
Upvotes: 0
Views: 194
Reputation: 340733
IntelliJ IDEA has pretty good support for Spring, including automatic generation of diagrams based on XML:
(source: jetbrains.com)
Upvotes: 1