我在解决绑定时的 typeMismatch Exceptions 时遇到了一些问题。类型不匹配错误无法从我的 messages.properties 中解决。
我的控制器处理程序:
@RequestMapping(method = RequestMethod.POST)
public @ResponseBody
ValidationResponse addOrder(@ModelAttribute(value = PARAM_NAME) @Valid Orders orders, BindingResult bindingResult) {
...
}
我从 bindingResult 收到此消息。
弹簧配置:
...
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/messages" />
<property name="defaultEncoding" value="UTF-8"/>
</bean>
<bean name="validator"
class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
<property name="validationMessageSource">
<ref bean="messageSource"/>
</property>
</bean>
...
/WEB-INF/messages.properties
:
...
Orders.width.NotNull=Null error
Orders.height.NotNull=Null error
typeMismatch.java.util.Date=Format error
typeMismatch.java.lang.Integer=Format error
typeMismatch.java.lang.Long=Format error
java.lang.NumberFormatException=Format error
typeMismatch.java.lang.NumberFormatException=Format error
typeMismatch.java.lang.NumberFormat=Format error
typeMismatch.orderAdd.width=Format error
typeMismatch=Format error
...
对于这样的检查:
...
@NotNull(message="{Orders.width.NotNull}")
private Long width;
...
我收到了正确的信息。
更新
此示例打印错误消息:
List<FieldError> allErrors = bindingResult.getFieldErrors();
for (FieldError objectError : allErrors) {
System.out.println(objectError.getDefaultMessage());
}