當我詮釋我的@NotNull FIELDS和驗證豆,我得到下面的默認消息這些語言環境GWT @NotNull外語
en_CA
May not be null
fr_CA
默認的消息覆蓋ne peut pas être nul
我想將fr_CA消息更改爲ne peut pas être vide
。我會怎麼做?
當我詮釋我的@NotNull FIELDS和驗證豆,我得到下面的默認消息這些語言環境GWT @NotNull外語
en_CA
May not be null
fr_CA
默認的消息覆蓋ne peut pas être nul
我想將fr_CA消息更改爲ne peut pas être vide
。我會怎麼做?
如果我正確理解您的問題,則需要在ValidationMessages_fr_CA.properties
文件中查找並替換此消息。
嘗試此
public class UserBean {
@Size(min=13, message="{creditcard.length}")
public String getCreditCard() {
return this.creditCard;
}
}
和creditcard.length =信用卡長度必須至少爲13個字符必須是在ValidationMessages.properties ValidationMessages_fr.properties