hibernate,我想为hibernate注释提供本地化的错误消息 所以我创建了属性文件ValidatorMessages.properties,ValidatorMessages_ar.properties
并将它们放在资源文件夹中,我使用messageSource从属性文件中读取:
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:messages</value>
<value>classpath:errors</value>
<value>classpath:app</value>
<value>classpath:ValidatorMessages</value>
</list>
</property>
<property name="defaultEncoding" value="UTF-8" />
</bean>
在课堂上我用的是:
@NotNull(message = "{validation.notEmpty.password}")
private string password;
并在调用验证器时使用:
Validator validator = Validation.buildDefaultValidatorFactory()
.getValidator();
Set<ConstraintViolation<MyClass> cvs = validator
.validate(myObject);
for (ConstraintViolation<MyClass> cv : cvs) {
String field = cv.getPropertyPath().toString();
result.addError(new FieldError("version", field, cv.getMessage()));
}
if (result.hasErrors()) {
initModel();
result.reject("add.version.errors");
return "manageVersions";
}
它可以正常使用英语,它可以正确显示英语消息,但是当切换到阿拉伯语时,它仍会显示英语消息而不是阿拉伯语,尽管
LocaleContextHolder.getLocale()
表示语言已更改且为阿拉伯语,因此配置或任何可能导致此问题的想法缺少某些内容?
答案 0 :(得分:2)
在设置验证器bean的Spring配置中,我认为你需要设置消息插补器:
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
<property name="messageInterpolator" ref="interpolator" />
</bean>
其中插值器bean的类型为LocaleContextMessageInterpolator(有关详细信息,请参阅here)。 Hibernate Validator不会自动知道查看LocaleContextHolder。
您可能还需要设置validationMessageSource属性,但我认为它是默认的,因为您至少收到了英文错误消息。