How can I handle null objects in array which binds from an inputs? I have
input name=example value=3,4 input name=example value=""
List example = new ArrayList()
the bind result is a list with 3 elements = null ,3, 4 is there an attribute that I can put on the list to ignore this null?
@JsonInclude(Include.NON_NULL) isn't working.