注释中的Spring Boot JSR303消息代码被忽略

时间:2015-02-13 04:55:36

标签: spring-boot bean-validation

在我的Spring Boot应用程序中,我有一个支持bean,我正在使用JSR303验证。在注释中,我指定了消息代码:

@NotBlank(message = "{firstname.isnull}")
private String firstname;

然后在我的message.properties中指定:

firstname.isnull = Firstname cannot be empty or blank

我对MessageSource的JavaConfig是:

@Bean(name = "messageSource")
public MessageSource messageSource() {
    ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
    messageSource.setBasename("messages");
    messageSource.setDefaultEncoding("UTF-8");
    return messageSource;
}

验证工作正常,但我没有看到实际的字符串,而是在jsp页面中获取消息代码。在查看日志文件时,我看到了一系列代码:

Field error in object 'newAccount' on field 'firstname': rejected value []; codes [NotBlank.newAccount.firstname,NotBlank.firstname,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [newAccount.firstname,firstname]; arguments []; default message [firstname]]; default message [{firstname.isnull}]

如果我将message.properties中的消息代码更改为数组中的某个代码,则该字符串会在我的Web表单中正确显示。我甚至不必更改注释中的代码。这表明注释的message参数中的代码被忽略了。

我不想使用默认代码。我想用自己的。我怎样才能做到这一点。能否请您提供代码示例。

2 个答案:

答案 0 :(得分:9)

JSR303插值通常适用于ValidationMessages.properties文件。但是你可以配置Spring来改变它,如果你想要的话(我很懒):)例如。

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

<mvc:annotation-driven validator="validator" />

答案 1 :(得分:5)

根据JSR-303 specification消息参数预计存储在ValidationMessages.properties个文件中。但是你可以覆盖他们寻找的地方。

所以你有两个选择:

  1. 将您的邮件移至ValidationMessages.properties文件
  2. 或覆盖getValidator()后代的WebMvcConfigurerAdapter方法(在您的情况下为JavaConfig):

    @Override
    public Validator getValidator() {
        LocalValidatorFactoryBean validator = new LocalValidatorFactoryBean();
        validator.setValidationMessageSource(messageSource());
        return validator;
    }