vote up 3 vote down star
1

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.

flag

53% accept rate

2 Answers

vote up 2 vote down check

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|flag
Well my next question is "what API did they use?", so this is perfect. – Frank Schwieterman Aug 13 at 3:55
vote up 3 vote down

For Spring the Spring IDE shows you a dependency graph.

Spring IDE bean graph


For Guice you can use Grapher.

Guice graph

link|flag

Your Answer

Get an OpenID
or

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