ApplicationContext-Service.xml
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list><value>messages</value></list>
</property>
</bean>
У меня есть messages_en_US.properties в /src/messages _en_US.properties
registerForm.passwordNotMatch=Password does not match.
Это строка кода вызывает ошибку:
binding.addError(new FieldError(REGISTER_FORM, "passwordNotMatch", messageSource.getMessage("registerForm.passwordNotMatch", null, locale)));
Ошибка: сообщение не найдено в коде 'registerForm.passwordNotMatch' для локали 'en_US'.
Что может быть неправильным?