Cross field validation with Hibernate Validator (JSR 303)

前端 未结 15 1736
渐次进展
渐次进展 2020-11-22 02:37

Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is the cleanest way to implement a cross fi

15条回答
  •  隐瞒了意图╮
    2020-11-22 02:56

    Why not try Oval: http://oval.sourceforge.net/

    I looks like it supports OGNL so maybe you could do it by a more natural

    @Assert(expr = "_value ==_this.pass").
    

提交回复
热议问题