Skip to content

Instantly share code, notes, and snippets.

@ggdio
Created September 17, 2013 19:43
Show Gist options
  • Save ggdio/6599499 to your computer and use it in GitHub Desktop.
Save ggdio/6599499 to your computer and use it in GitHub Desktop.
javax validation messages config file
javax.validation.constraints.AssertFalse.message=The value must be false
javax.validation.constraints.AssertTrue.message=The value must be true
javax.validation.constraints.DecimalMax.message=The value must be less or equal to {value}
javax.validation.constraints.DecimalMin.message=The value must be bigger or equal to {value}
javax.validation.constraints.Max.message=The value max length is {value}
javax.validation.constraints.Min.message=The value min length is {value}
javax.validation.constraints.NotNull.message=It must not be null
javax.validation.constraints.Size.message=The value must be between {min} and {max}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment