InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of CreateIfNull Annotation annotation? |
|
Answer» This annotation sets the CreateIfNull for type conversion. The CreateIfNull annotation must be applied at field or method level. CreateIfNull( value = true )private List<User> users; |
|