Код: Выделить всё
@Bean
public LocaleResolver localeResolver(MessageSourceProperties properties) {
CookieLocaleResolver clr = new CookieLocaleResolver(properties.getCookieName());
clr.setDefaultLocale(Locale.ENGLISH);
return clr;
}
Код: Выделить всё
The bean 'localeResolver', defined in class path resource [com/app/autoconfigure/internationalization/I18nAutoConfiguration.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class] and overriding is disabled.
Как его переопределить?
Подробнее здесь: https://stackoverflow.com/questions/755 ... ing-boot-3
Мобильная версия