This section describes the notes on the implementation of Bean Validation.
Table 10-7 Default values of the Message Interpolator messages for Application Server
Message property key | Default value |
---|---|
javax.validation.constraints.AssertFalse.message | must be false |
javax.validation.constraints.AssertTrue.message | must be true |
javax.validation.constraints.Digits.message | numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected) |
javax.validation.constraints.Future.message | must be in the future |
javax.validation.constraints.Max.message | must be less than or equal to {value} |
javax.validation.constraints.Min.message | must be greater than or equal to {value} |
javax.validation.constraints.NotNull.message | may not be null |
javax.validation.constraints.Null.message | must be null |
javax.validation.constraints.Past.message | must be in the past |
javax.validation.constraints.Pattern.message | must match "{regexp}" |
javax.validation.constraints.Size.message | size must be between {min} and {max} |