up vote 3 down vote favorite
1
share [g+] share [fb]

Do any inversion of control / dependency injection framworks support viewing the object dependencies that have been registered? This is not to execute the code, but to better understand it. It seems that a graph based on the information it has (class A depends on B and C, class B dependencs on C and E, etc) would really document a system well.

I'm using Castle Windsor at the moment, but wouldn't mind trying a different framework for this functionality.

link|improve this question

66% accept rate
Question added to the Windsor FAQ: using.castleproject.org/display/IoC/FAQ – Mauricio Scheffer Jan 24 '10 at 17:10
feedback

2 Answers

up vote 2 down vote accepted

Here's a little console application that'll output the dependency graph of a Windsor container. Text-only, but still very useful.

I recently blogged about showing all component dependencies as a proper graph. Sample output (scaled down):

windsor dependencies

link|improve this answer
Well my next question is "what API did they use?", so this is perfect. – Frank Schwieterman Aug 13 '09 at 3:55
feedback

For Spring the Spring IDE shows you a dependency graph.

Spring IDE bean graph


For Guice you can use Grapher.

Guice graph

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.