문제

I use JSR303 Spring Validation and I have the following;

@Digits(fraction = 0, integer = 15)
private String tpMobile;

Validation says Must be number between 10-15 digits, but the thing is this field is optional. So when user left it empty also the same error message shows.

So what I want to do is validate only if the field is not empty. If the field is empty skip validating that field

도움이 되었습니까?

해결책

Instead of using @Digit, I would like to suggest you to use @Pattern(message="YOUR_MESSAGE", regexp="REGULAR_EXPRESSION")

Main reason is that we show message for such set of values for which we want to restrict the user, here in your condition message is displayed for that value which you don't want to restrict.

So You wants to restrict user to enter anything other than blank space and numbers.Make a regular expression for that and use @Pattern with that.

For your case :

@Pattern(message="YOUR_MESSAGE", regexp="^(\\s*|\\d{10,15})$")

다른 팁

Obviously, you form submits empty strings instead of nulls. Just check the value of tpMobile

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top