You could set in your message.properties
validation.range=Not in the range %2$f through %3$f
and so on.
Unfortunately you don't can get the String you put into the
Annotation. Another possibility is
@Min(value=0.1,message="Cannot be lower than 0.1") or the way you
suggested with an entry in your message.properties.
Niels