| OgnlBindErrorMessageResolver |
Ognl-based BindErrorMessageResolver, which uses the following convention for the message resource bundles: all bind
error keys use prefix "bind.error." to which the type object it appended, eg
"bind.error.number": a bind error for any number (short, int, float, double, long)
"bind.error.boolean": a bind error for a boolean
"bind.error.[type.getName()]": a bind error for the type
"bind.error.default": any other bind error that does not satisfy any of the above
The default bind error also has a default message (cf OgnlBindErrorMessageResolver#DEFAULT_MESSAGE) if the default
key is not found. |