Validate elements of a String array with Java Bean Validation

I have a simple class that has one of its properties as a String array. As per this document, using @Valid on an array, collection etc. will recursively validate each element of the array/collectio...