InterviewSolution
Saved Bookmarks
| 1. |
What Is Lazy Initialization? |
|
Answer» BEAN is not allocated until it is actually needed - dependency injected - or requested via getBean(). specify lazy="true" (FALSE by default). Only useful if bean GENUINELY may never be used in most runs of the APPLICATION. Bean is not allocated until it is actually needed - dependency injected - or requested via getBean(). specify lazy="true" (false by default). Only useful if bean genuinely may never be used in most runs of the application. |
|