InterviewSolution
Saved Bookmarks
| 1. |
What does Required annotation mean? |
|
Answer» This annotation simply indicates that the affected bean property must be populated at configuration time, through an explicit property value in a bean definition or through autowiring. The container throws BeanInitializationException if the affected bean property has not been populated. |
|