All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gccloud.starter.common.config.LocaleConfig Maven / Gradle / Ivy

package com.gccloud.starter.common.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.i18n.SessionLocaleResolver;

import java.util.Locale;

/**
 * 国际化语言配置
 *
 * @author hongyang
 * @version 1.0
 * @date 2022/1/19 19:19
 */
@Configuration
public class LocaleConfig {
    /**
     * 默认解析器 其中locale表示默认语言
     */
    @Bean
    public LocaleResolver localeResolver() {
        SessionLocaleResolver localeResolver = new SessionLocaleResolver();
        localeResolver.setDefaultLocale(Locale.SIMPLIFIED_CHINESE);
        return localeResolver;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy