Reputation: 495
here what i do in a model class
private Integer height;
@NotBlank
@Length(min = 2, max = 3)
public Integer getHeight() {
return height;
}
public void setHeight(Integer height) {
this.height = height;
}
but there is a validation error in the jsp page while running, it says that cannot validate the integer value.
in the message.properties file
NotBlank.modelClassName.height=Required in cm. Length.modelClassName.height=min {0} max (1). typeMismatch.modelClassName.height=numbers only.
help me please
Upvotes: 1
Views: 519