Issue
If I have 1000 bean configurations in .xml file are all these beans created at the time of creation of the container
Solution
By default yes. All beans get created on startup. There's the @Lazy
annotation which allows you to delay the initialization until the bean gets used.
Answered By - N. D.
Answer Checked By - Cary Denson (JavaFixing Admin)