Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

internationalization example not working with Spring Boot 2.1.3.RELEASE #8

Open
thoweber opened this issue Mar 28, 2019 · 0 comments
Open

Comments

@thoweber
Copy link

Hi Dan,
your example MVC app on internationalization is not working with Spring Boot 2.1.3, as this version resolves the locale from the browser's accept-language header, which will always override the settings from application.properties.

I had to provide a minimal WebMvcConfigurer to allow changing the locale via a request parameter to get it to work.

`/** */
@configuration
public class WebConfig implements WebMvcConfigurer {

@Bean
public LocaleResolver localeResolver() {
	SessionLocaleResolver localeResolver = new SessionLocaleResolver();
	return localeResolver;
}

@Override
public void addInterceptors(InterceptorRegistry registry) {
	LocaleChangeInterceptor localeChangeInterceptor = new LocaleChangeInterceptor();
	localeChangeInterceptor.setParamName("lang");
	registry.addInterceptor(localeChangeInterceptor);
	WebMvcConfigurer.super.addInterceptors(registry);
}

}`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant