Micronaut's default constraint validator does not benefit from validation messages for the @DecimalMin and @DecimalMax annotations in the [DefaultValidationMessages] class (https://github.com/micronaut-projects/micronaut-core/blob/d4234cb76b3e35dddb4b6ba89e99463d40863795/validation/src/main/java/io/micronaut/validation/validator/messages/DefaultValidationMessages.java#L44), contrarily to @Min and @Max.
@DecimalMin (or @DecimalMax) constraintThe received validation message should be something like must be greater than or equal to {value} (resp. must be less than or equal to {value}) - close to what is defined for @Min (resp. @Max).
The received validation message is javax.validation.constraints.DecimalMin.message (resp. javax.validation.constraints.DecimalMax.message).
Seems like a great area to contribute a PR
@graemerocher I will later today