<@Valid annotation is not validating the list of c...
# stackoverflow
u
@Valid annotation is not validating the list of child objects - Spring Boot + Kotlin I have a very similar problem to this topic @Valid annotation is not validating the list of child objects but trying to implement using Kotlin. The @Valid annotation is not working for WordDto. Only the class MessageDto is evaluated. @SpringBootApplication class ValidationsApplication fun main(args: Array) { runApplication(*args) } data class WordDto( @field:Max(5)...