package com.sinata.rest.common.i18n;
|
|
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.WebMvcConfigurer;
|
|
/**
|
* 配置
|
*/
|
@Configuration
|
public class MyLocaleConfig implements WebMvcConfigurer {
|
|
@Bean
|
public LocaleResolver localeResolver() {
|
return new MyLocaleResolver();
|
}
|
}
|