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. 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. |
|