Steve Atkinson
Steve Atkinson

Reputation: 1239

Is there a tool or plugin to create a graphical representation of spring bean injections?

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

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340733

IntelliJ IDEA has pretty good support for Spring, including automatic generation of diagrams based on XML:

diagram
(source: jetbrains.com)

Upvotes: 1

Related Questions