Java Bean Validation (JSR303) constraints involving relationship between several bean properties

前端 未结 5 1586
粉色の甜心
粉色の甜心 2020-12-05 00:43

Say I have the following simple java bean:

class MyBean {
   private Date startDate;
   private Date endDate;
   //setter, getters etc...
}

5条回答
  •  清歌不尽
    2020-12-05 01:42

    @AssertMethodAsTrue - A reusable constraint annotation that spans multiple properties.

提交回复
热议问题