1

我正在尝试将默认 ValidationMessages.properties 修改为其他。但我不明白。

我的设置:

在春天。

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basenames">
        <list>
            <value>text</value>
            <value>error</value>
        </list>
    </property>
</bean>

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

在 text.properties 和 tex_XX.properties 中。

edit.profile.password.size=Password must be between {min} and {max}

注释示例。

@Size(min=4, max=8, message="{edit.profile.password.size}")
4

1 回答 1

0

即使您使用不同的验证提供程序,您也应该在类路径上安装 Hibernate Validator 4.1 或更高版本。

于 2012-07-29T22:41:39.417 回答