1

我需要在控制器中以编程方式获取已解决的错误消息。typeMismatch 错误的默认验证消息未从我的 messages.properties 文件中填充。我有一个表单支持对象,其中一个字段是一个整数。如果我为该字段提交一个字符串,我会得到:

Failed to convert property value of type 'java.lang.String' to required type 'java.lang.Integer' for property 'establishedYear'; nested exception is java.lang.NumberFormatException: For input string: "1995a"

作为 ObjectError 中的默认消息。这是我的控制器输出它:

  @RequestMapping(method = RequestMethod.POST)
  public @ResponseBody FormJSONResponse postForm(@Valid ProfileEditCompanyForm profileEditCompanyForm, BindingResult result) throws Exception {    
    if (result.hasErrors()) {
      for (ObjectError objectError : result.getAllErrors()) {
        System.out.println(objectError.getDefaultMessage());  // THIS IS NOT MY MESSAGE, BUT SHOULD BE
      }
    }
    ... other stuff ...
  }

所以我向 WEB-INF/classes 添加了一个带有一些测试消息的 messages.properties,看看我是否可以覆盖该默认消息:

typeMismatch.profileEditCompanyForm.establishedYear=test 1
typeMismatch.establishedYear=test 2
typeMismatch.java.lang.Integer=test 3
typeMismatch=test 4
profileEditCompanyForm.establishedYear=test 5
establishedYear=test 6

在我的 app-servlet.xml 文件中,我有:

<mvc:annotation-driven conversion-service="conversionService" validator="validator"/>

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
  <property name="basename" value="messages" />
</bean>

<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
  <property name="validationMessageSource" ref="messageSource"/>
</bean>

为什么它没有从我的 messages.properties 文件中获取我的任何消息?

4

3 回答 3

5

在你的 Spring 上下文中尝试这个:

<bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basename" value="WEB-INF/classes/messages" />
</bean>

然后在“WEB-INF/classes”文件夹中创建一个文件调用:“messages.properties”

请注意“messages.properties”的内容,您必须像这样提供它:

typeMismatch.pathValueInsideYourJSPform:input= Your Message 

希望这对你有帮助!

这里也是一个样本

于 2013-04-14T20:36:34.863 回答
0

尝试指定完整路径并尝试

    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
      <property name="basename" value="WEB-INF/messages" />
    </bean>
于 2012-11-09T20:40:35.123 回答
0

显然我必须通过 Spring MessageSource 运行 FieldError 对象。我希望这是自动完成的。我在这里找到了答案:

如何从 BindingResult 获取控制器中的错误文本

于 2012-11-09T22:46:59.660 回答