mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Prior to this commit, #31870 added support for constraint annotations on container elements for handler method argument validation. Supporting this use case: ``` public void addNames(List<@NotEmpty String> names) ``` This commit does the same for `@Valid` annotation: ``` public void addPeople(List<@Valid Person> people) ``` Fixes gh-32964