| In MixDirectAnnotationAndListContainerAnnotation, an error was previously reported on an incorrect line. This is fixed in latest JDK 9, thus the error is now reported on different lines in JDK 8 and 9. We can work around it by using:
@Length.List(
{ @Length(min = 45) }
)
instead of: {{ @Length.List(@Length(min = 45)) }} It makes the error reported on the correct line for JDK 8 too. |