SpringBoot国际化

简介: SpringBoot国际化

# 定义国际化资源


  • resources下新建i18n文件夹
  • 新建xx.properties文件
  • 中文:新建xx_zh_CN.properties文件存放对应的中文
  • 英文:新建xx_en_US.properties文件存放对应的英文
    效果是这样的:



image.png

定义需要国际化的内容


image.png

在application.yml中配置


spring:
  messages:
    # 定义国际化文件的文件地址,读取的原则是顺序读取如果存在同名的则读取第一个
    basename: i18n/login,i18n/errorMessage
  • 定义国际化解析器与拦截器

package com.futao.springmvcdemo.foundation.configuration;
import org.springframework.context.annotation.Bean;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.i18n.LocaleChangeInterceptor;
import org.springframework.web.servlet.i18n.SessionLocaleResolver;
import java.util.Locale;
/**
 * 通用bean注册管理中心
 *
 * @author futao
 * Created on 2019-01-15.
 */
@org.springframework.context.annotation.Configuration
public class Configuration {
    /**
     * 国际化,设置默认的语言为中文
     * 将用户的区域信息存在session
     * 也可以存在cookie,由客户端保存   {@link org.springframework.web.servlet.i18n.CookieLocaleResolver}
     *
     * @return
     */
    @Bean
    public LocaleResolver localeResolver() {
        SessionLocaleResolver slr = new SessionLocaleResolver();
        slr.setDefaultLocale(Locale.SIMPLIFIED_CHINESE);
        return slr;
    }
    /**
     * 国际化,设置url识别参数
     *
     * @return
     */
    @Bean
    public LocaleChangeInterceptor localeChangeInterceptor() {
        LocaleChangeInterceptor lci = new LocaleChangeInterceptor();
        lci.setParamName("lang");
        return lci;
    }
}
  • 国际化配置文件会被spring加载,所以可以通过spring容器获取到国际化文件里面的内容
  • 获取spring容器

package com.futao.springmvcdemo.utils;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Service;
/**
 * Spring容器
 *
 * @author futao
 * Created on 2019-01-15.
 */
@Service
public class SpringUtils implements ApplicationContextAware {
    private static ApplicationContext context = null;
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        if (context == null) {
            context = applicationContext;
        }
    }
    /**
     * 获取容器
     *
     * @return 容器
     */
    public static ApplicationContext getContext() {
        return context;
    }
}
  • 在程序中使用

//通过spring容器读取
SpringUtils.getContext().getMessage(code, null, LocaleContextHolder.getLocale())
//或者
    @Resource
     private MessageSource messageSource;
     return messageSource.getMessage(code, null, LocaleContextHolder.getLocale());
  • 写个工具类

package com.futao.springmvcdemo.service.notbusiness;
import com.futao.springmvcdemo.foundation.LogicException;
import com.futao.springmvcdemo.model.system.ErrorMessage;
import com.futao.springmvcdemo.utils.SpringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.NoSuchMessageException;
import org.springframework.context.i18n.LocaleContextHolder;
/**
 * 国际化
 *
 * @author futao
 * Created on 2019-01-15.
 */
public class I18nService {
    private static final Logger LOGGER = LoggerFactory.getLogger(I18nService.class);
    /**
     * 获取消息
     * 也可以使用下面的方式:
     * Resource private MessageSource messageSource;
     * return messageSource.getMessage(code, null, LocaleContextHolder.getLocale());
     *
     * @param code k
     * @return v
     */
    public static String getMessage(String code) {
        try {
            return SpringUtils.getContext().getMessage(code, null, LocaleContextHolder.getLocale());
        } catch (NoSuchMessageException e) {
            LOGGER.error("获取国际化资源{}失败" + e.getMessage(), code, e);
            throw LogicException.le(ErrorMessage.I18N_RESOURCE_NOT_FOUND, new String[]{code});
        }
    }
}
  • 使用

I18nService.getMessage("welcome")


  • 前端在接口后面加上local信息?lang=zh_CN或者?lang=en_US即可


源代码: https://github.com/FutaoSmile/springbootFramework

或者: https://gitee.com/FutaoSmile/springboot_framework

欢迎star~

相关文章
|
29天前
|
前端开发 Java Spring
SpringBoot项目thymeleaf页面支持词条国际化切换
SpringBoot项目thymeleaf页面支持词条国际化切换
59 2
|
6月前
|
Java 数据安全/隐私保护 网络架构
一个简单的示例在spring boot中实现国际化
一个简单的示例在spring boot中实现国际化
|
5月前
|
JavaScript Java 测试技术
基于SpringBoot+Vue+uniapp的北工国际健身俱乐部的详细设计和实现(源码+lw+部署文档+讲解等)
基于SpringBoot+Vue+uniapp的北工国际健身俱乐部的详细设计和实现(源码+lw+部署文档+讲解等)
|
5月前
|
存储 Java UED
Spring Boot中的国际化处理
Spring Boot中的国际化处理
|
5月前
|
JavaScript Java 测试技术
基于springboot+vue.js+uniapp的北工国际健身俱乐部附带文章源码部署视频讲解等
基于springboot+vue.js+uniapp的北工国际健身俱乐部附带文章源码部署视频讲解等
24 0
|
6月前
|
自然语言处理 Java UED
Spring Boot中的国际化配置
Spring Boot中的国际化配置
|
6月前
|
JavaScript Java 测试技术
基于SpringBoot+Vue的北工国际健身俱乐部的详细设计和实现
基于SpringBoot+Vue的北工国际健身俱乐部的详细设计和实现
26 0
|
7月前
|
缓存 Java Spring
Spring Boot做国际化
Spring Boot做国际化
127 0
|
7月前
|
Java 容器
SpringBoot下资源国际化应用实践
SpringBoot下资源国际化应用实践
92 0
|
自然语言处理 Java 物联网
TDengine 资深研发整理:基于 SpringBoot 多语言实现 API 返回消息国际化
为了帮助开发者更好地进行 SpringBoot 的开发,避免开发盲点,我们将 TDengine 资深研发所做的内部分享——《SpringBoot 多语言支持方案》进行了相关整理,给到有需要的开发者参考。
293 1