What is in my Spring Context?
When we are learning Spring, there are times we are not sure which beans are in the Spring context. Especially when we use convenient features of Spring 3 such as or . As developers, we want to inspect the classes that are automatically registered providing the opportunity to look at the source code and javadocs to see what each class does. JUnit Tests get Application Context Our JUnit tests have the ability to inject the Application Context. This is one…