0
在JSR303驗證中,是否可以傳遞bean的屬性作爲驗證消息的參數?JSR303驗證 - Bean的屬性作爲消息參數
Ex。
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)
,我應該得到的錯誤「年齡的艾哈邁德應大於15」
當有一個BeanA的列表,我們想驗證,我希望這個錯誤信息將是有用的。 – 2012-05-02 09:54:56