mitao
2024-04-03 e36aa4e9b9f061da11587fbd2580b065a661364a
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();
    }
}