I have a model class which has list of Strings. The list can either be empty or have elements in it. If it has elements, those elements can not be empty. For an example suppose I have a class called QuestionPaper which has a list of questionIds each of which is a string.
class QuestionPaper{
private List<String> questionIds;
....
}
The paper can have zero or more questions. But if it has questions, the id values can not be empty strings. I am writing a micro service using SpringBoot, Hibernate, JPA and Java. How can I do this validation. Any help is appreciated.
For an example we need to reject the following json input from a user.
{ "examId": 1, "questionIds": [ "", " ", "10103" ] }
Is there any out of the box way of achieving this, or will I have to write a custom validator for this.