2023-02-05 13:54:48 +01:00
|
|
|
package stirling.software.SPDF.config;
|
|
|
|
|
2023-02-11 15:27:15 +01:00
|
|
|
import java.util.Locale;
|
|
|
|
|
2023-02-05 13:54:48 +01:00
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.web.servlet.LocaleResolver;
|
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
import org.springframework.web.servlet.i18n.LocaleChangeInterceptor;
|
|
|
|
import org.springframework.web.servlet.i18n.SessionLocaleResolver;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
public class Beans implements WebMvcConfigurer {
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
public LocaleResolver localeResolver() {
|
|
|
|
SessionLocaleResolver slr = new SessionLocaleResolver();
|
|
|
|
slr.setDefaultLocale(Locale.US);
|
|
|
|
return slr;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
public LocaleChangeInterceptor localeChangeInterceptor() {
|
|
|
|
LocaleChangeInterceptor lci = new LocaleChangeInterceptor();
|
|
|
|
lci.setParamName("lang");
|
|
|
|
return lci;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
|
registry.addInterceptor(localeChangeInterceptor());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|