在 JSR303 验证中,是否可以将 bean 的属性作为验证消息的参数传递?
前任。
class BeanA {
private String userName;
@Min(value=15, message="Age of {userName} should be greater than {value}")
private int age;
public BeanA(String userName,int age){
//initialization
}
}
对于一个对象BeanA("Ahamed", 12)
,我应该得到错误“ Ahamed的年龄应该大于 15 ”