我正在尝试使用@Regexp, @Notnull,@NotBlank etc
等注释进行一些字段验证。我用了一条消息。属性文件显示我的错误消息,如
MerchantView.merchantPosId[not.blank]=Please enter merchant pos id's
MerchantView.merchantPosId[regexp]=Please enter merchant pos id's in comma separated numbers
MerchantView.merchantPosId[length]=Please do not enter more than 100 Characters.
MerchantView.accountNumber[not.null]=Please enter merchant account number.
我可以使用字符串字段进行所有字段验证,或者当字段为空时(即使是长字段和整数字段)。
但是我无法为我的Integer或Long字段填充任何自定义消息。我需要使用哪种注释。谢谢