Javax验证,使用注释验证对象的属性

时间:2012-06-07 23:19:14

标签: java validation annotations

假设我有以下课程:

public class MyProductCode  {
    private String code;
    // getter and setter
}

public class MyProduct {
    @NotNull
    private MyProductCode myCode;
    // getter and setter
}

是否可以通过“MyProduct”类验证“code”属性? 像这样:

@NotNull(property = "code")
private MyProductCode myCode;

1 个答案:

答案 0 :(得分:0)

使用Oval框架,有可能:

参考Declaring constraints for nested properties