当我用@NotNull注释我的FIELDS并验证bean时,我得到以下这些语言环境的默认消息
en_CA
May not be null
fr_CA
ne peut pas être nul
我想将fr_CA消息更改为ne peut pas être vide
。我该怎么做?
答案 0 :(得分:0)
如果我正确理解了您的问题,您需要在ValidationMessages_fr_CA.properties
文件中查找并替换此消息。
答案 1 :(得分:0)
试试这个
public class UserBean {
@Size(min=13, message="{creditcard.length}")
public String getCreditCard() {
return this.creditCard;
}
}
和creditcard.length =信用卡长度必须至少为13个字符必须在ValidationMessages.properties中ValidationMessages_fr.properties