puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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();
    }
}