溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Spring boot+beetl+i18n國際化處理的方法

發(fā)布時間:2020-09-24 22:19:54 來源:腳本之家 閱讀:208 作者:Start_liyi 欄目:編程語言

國際化(internationalization)是設(shè)計和制造容易適應(yīng)不同區(qū)域要求的產(chǎn)品的一種方式。它要求從產(chǎn)品中抽離所有地域語言,國家/地區(qū)和文化相關(guān)的元素。換言之,應(yīng)用程序的功能和代碼設(shè)計考慮在不同地區(qū)運(yùn)行的需要,其代碼簡化了不同本地版本的生產(chǎn)。開發(fā)這樣的程序的過程,就稱為國際化。

Spring boot 搭配慢慢開始火起來的 beetl 模板 配置國際化

首先需要添加WebMvcConfigurer配置

 /**
  * 設(shè)置攔截器
  */
 @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();
  //設(shè)置默認(rèn)區(qū)域,
  slr.setDefaultLocale(Locale.CHINA);
  return slr;
 }

然后自定義配置beetl

...
 @Autowired
 private WebApplicationContext wac;

 @Bean
 public BeetlTemplateCustomize beetlTemplateCustomize() {
  return new BeetlTemplateCustomize() {
   public void customize(GroupTemplate groupTemplate) {
    // 注冊全局共享變量
    Map<String, Object> sharedVars = new HashMap<String, Object>();
    groupTemplate.setSharedVars(sharedVars);

    // 注冊國家化函數(shù)
    groupTemplate.registerFunction("i18n", new I18nFunction(wac));
   }
  };
 }

然后配置i18n國際化函數(shù)

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參數(shù)中添加lang=en 或者 lang=zh-CN

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI