문제

Has anyone come across the need to have a constraint that is only applied when all group clauses are satisfied. In other words, for

@NotNull(groups= {Group1.class, Group2.class})
private Integer value;

The not null constraint is applied when either group is valid.

What if I want to apply a constraint when both groups are valid?

Having a custom group is not an option as there are many combinations of such groups in my application.

도움이 되었습니까?

해결책

You might declare a group sequence containing all your groups and validate that sequence.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top