mitao
2024-04-30 ab4ea7b8f10c9b66aed9c2ea161a08b25c3851a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
    }
}