我正在使用带有 Hibernate 验证器 4.2.0 的 Spring MVC。在 /WEB-INF/classes/ValidationMessages.properties 中的类路径上有一个 ValidationMessages.properties:
typeMismatch.java.lang.Integer=Must specify an integer value.
typeMismatch.int=Invalid number entered
typeMismatch=Invalid type entered
这在 javaconfig 中作为 bean 提供:
@Configuration
@EnableWebMvc
public class WebApplicationConfiguration extends WebMvcConfigurerAdapter {
...
@Bean
public ReloadableResourceBundleMessageSource messageSource() {
ReloadableResourceBundleMessageSource resourceBundleMessageSource = new ReloadableResourceBundleMessageSource();
resourceBundleMessageSource.setBasename("ValidationMessages");
return resourceBundleMessageSource;
}
...
从类路径加载 ValidationMessages.properties 很好。我的控制器:
@Controller
public class myController {
...
@InitBinder("myForm")
protected void initUserBinder(WebDataBinder binder) {
binder.setValidator(new CustomValidator());
}
...
@ResponseBody
@RequestMapping(value = "/ajax/myRequest", method = RequestMethod.POST)
public CustomResponse ProcessAjaxRequest(
@Valid @ModelAttribute final MyForm myForm,
final BindingResult bindingResult)
throws Exception {
if (bindingResult.hasErrors()) {
return new CustomResponse(bindingResult.getAllErrors());
} else {
..
}
}
...
还有一个自定义验证器:
public class CustomValidator implements Validator {
@Override
public boolean supports(Class c) {
return MyForm.class.equals(c);
}
@Override
public void validate(Object obj, Errors errors) {
..
使用我的 CustomValidator 进行验证工作正常(我手动插入错误消息,而不是使用消息源),但是对于绑定 typeMismatch 错误,我得到了异常:
Failed to convert property value of type 'java.lang.String' to required type 'java.lang.Integer' for property 'myField'; nested exception is java.lang.NumberFormatException: For input string: "A"
而不是来自 ValidationMessages.properties 的代码,所以看起来 DataBinder (?) 没有使用我的 messageSource。我想要我的属性文件中的 typeMismatch 代码而不是异常消息。我也尝试过使用 ResourceBundleMessageSource 而不是 ReloadableResourceBundleMessageSource 但这没有任何区别。有任何想法吗?