How to graphically view dependencies in a spring application context file

I have several application context files for the application. I want to graphically view the dependencies between them.

Is there a free plugin in eclipse or some kind of viewer?

Thanks!

+6
source share
2 answers

The Spring Tool Suite has an editor (Spring Configuration Editor) for editing xml Spring context files. This editor can also draw a beans diagram (the Beans Graph tab of this editor - see image below.).

When I remember correctly, this functionality is also included in the Eclipse Spring IDE plugin.


"Beans Graph" of "Spring Config Editor" in STS

+7
source

There is also a Spring Bean Doc project, although it's a little long in the tooth. I have not used it with Spring 3, so I can not talk about its effectiveness for recent versions.

+1
source

Source: https://habr.com/ru/post/901218/


All Articles