What is Causing the Destruction of Singletons in the DefaultListableBeanFactory?
When I deploy my war file to my tomcat instance, the tomcat log files indicate that Spring creates and injects the various beans declared in the various context files of my application. However, once all the beans are created, Spring immediately notifies that it is:
Quote:
[INFO] Destroying singletons in org.springframework.beans.factory.support.DefaultL istableBeanFactory
Can anyone help me understand why this is happening and how to stop it from destroying all the beans it just created? Thanks.