我如何在 spring auto restdocs 中记录内部集合约束

How i can document inner collection constraints in spring auto restdocs

我正在尝试记录集合(NotBlank 和 Size)的内部约束,例如:

@Valid    
private List<@NotBlank @Size(min = 1, max = 100) String> someAnotherUsefulInformationList;

我可以使用内置功能吗?

PS: 我找到了一个解决约束的地方here and after modifying this method I got access to needed constraints, but NotBlank fall into Optional field in the snippet

内置功能不提供记录内部集合约束。 经过一些研究和发现 question i'm made a custom solution in this repository