Я пытаюсь изменить значения по умолчанию 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}")