成都创新互联网站制作重庆分公司

Springboot+beetl+i18n国际化处理的方法

国际化(internationalization)是设计和制造容易适应不同区域要求的产品的一种方式。它要求从产品中抽离所有地域语言,国家/地区和文化相关的元素。换言之,应用程序的功能和代码设计考虑在不同地区运行的需要,其代码简化了不同本地版本的生产。开发这样的程序的过程,就称为国际化。

创新互联专业成都网站建设、网站设计,集网站策划、网站设计、网站制作于一体,网站seo、网站优化、网站营销、软文发布平台等专业人才根据搜索规律编程设计,让网站在运行后,在搜索中有好的表现,专业设计制作为您带来效益的网站!让网站建设为您创造效益。

Spring boot 搭配慢慢开始火起来的 beetl 模板 配置国际化

首先需要添加WebMvcConfigurer配置

 /**
  * 设置拦截器
  */
 @Override
 public void addInterceptors(InterceptorRegistry registry) {
  registry.addInterceptor(localeChangeInterceptor());
 }
 
 /**
  * 国际化切换拦截器
  * 
  * @return 国际化切换拦截器
  */
 @Bean
 public LocaleChangeInterceptor localeChangeInterceptor() {
  LocaleChangeInterceptor interceptor = new LocaleChangeInterceptor();
  interceptor.setParamName("lang");
  return interceptor;
 }

 /**
  * 国际化处理器
  * 
  * @return 国际化处理器
  */
 @Bean
 public LocaleResolver localeResolver() {
  SessionLocaleResolver slr = new SessionLocaleResolver();
  //设置默认区域,
  slr.setDefaultLocale(Locale.CHINA);
  return slr;
 }

然后自定义配置beetl

...
 @Autowired
 private WebApplicationContext wac;

 @Bean
 public BeetlTemplateCustomize beetlTemplateCustomize() {
  return new BeetlTemplateCustomize() {
   public void customize(GroupTemplate groupTemplate) {
    // 注册全局共享变量
    Map sharedVars = new HashMap();
    groupTemplate.setSharedVars(sharedVars);

    // 注册国家化函数
    groupTemplate.registerFunction("i18n", new I18nFunction(wac));
   }
  };
 }

然后配置i18n国际化函数

public class I18nFunction implements Function {

 private WebApplicationContext wac;

 public I18nFunction(WebApplicationContext wac) {
  this.wac = wac;
 }

 @Override
 public Object call(Object[] obj, Context context) {
  HttpServletRequest request = (HttpServletRequest) context.getGlobal(WebVariable.REQUEST);
  RequestContext requestContext = new RequestContext(request);
  String message = requestContext.getMessage((String) obj[0]);
  return message;
 }

}

最后配置资源文件

Spring boot+beetl+i18n国际化处理的方法

这个资源文件路径也是配出来的,不多介绍了......

测试:

在模板中添加${i18n('messageCode')} , 在url参数中添加lang=en 或者 lang=zh-CN

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。


分享文章:Springboot+beetl+i18n国际化处理的方法
文章起源:http://cxhlcq.com/article/giodcg.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部