mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-08 08:50:10 +01:00
36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
|
package stirling.software.SPDF.config;
|
||
|
|
||
|
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;
|
||
|
|
||
|
import java.util.Locale;
|
||
|
|
||
|
@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());
|
||
|
}
|
||
|
|
||
|
}
|