I have a Mule project using Spring beans. I am curious if there is a way to monitor Spring as it creates objects. I think I have a one or more Spring beans being created repeatedly rather than once. Is there a way I can observe the project to see if this is true?
Share
You can implement the InitializingBean interface
Or use the @PostContruct annotation on a method.