基于请求URL的国际化实现方式

基于请求URL的国际化实现方式

原理:使用spring的request bean保存相应的国际化组件,这样保证同一个请求的国际化相同,也是在微服务处理国际化的一种方式。需要针对每个请求做不同的国际化

实现所以需要,相应的拦截器去处理对应请求域中的国际化组件

  1. 配置文件:
  • spring容器配置applicationContext.xml,中添加取得信息的messageSource,放在spring容器而非springmvc容器加载是因为代码中有Service的注解依赖于他
<!-- 国际换的service依赖于他,所以从mvc提到前面 -->
    <bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <!-- 国际化信息所在的文件名 -->
        <property name="basename" value="messages/messages" />
        <property name="defaultEncoding" value="UTF-8"/> 
        <!-- 如果在国际化资源文件中找不到对应代码的信息,就用这个代码作为名称 -->
        <property name="useCodeAsDefaultMessage" value="true" />
    </bean>
  1. springmvc容器配置拦截器,注意拦截器的顺序,国际化的拦截器在处理请求的拦截器前面
<mvc:interceptors>
       <mvc:interceptor>  
      <mvc:mapping path="/**"/>  
       <!-- 国际化操作拦截器 如果采用基于(请求/Session/Cookie)则必需配置 --> 
      <bean  id="localeChangeInterceptor"
               class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
          <property name="paramName" value="locale"/>
      </bean>
      </mvc:interceptor>  
      <mvc:interceptor>
          <!-- 需拦截的地址 -->
          <!--   级目录 -->
          <mvc:mapping path="/*" />
          <mvc:mapping path="/*/*" />
          <!-- 需排除拦截的地址 -->
          <mvc:exclude-mapping path="/*.html"/>
          <bean class="cn.xx.xx.xx.interceptor.ControllerInterceptor" />
      </mvc:interceptor>
  </mvc:interceptors>
  <!-- 基于url的国际化 id必须为localeResolver否则国际化组件无法识别,UrlAcceptHeaderLocaleResolver为自定义实现部分-->
<bean id="localeResolver" class="cn.abcsys.devops.application.service.UrlAcceptHeaderLocaleResolver"/>
  1. UrlAcceptHeaderLocaleResolver作为localeResolver国际urlLocal
/**
* Copyright: Copyright (c) 2018 LanRu-Caifu
* @author xzg
* 2018年2月6日
* @ClassName: UrlAcceptHeaderLocaleResolver.java
* @Description: 国际化拦截请求后对请求更改Local
* @version: v1.0.0
*/
public class UrlAcceptHeaderLocaleResolver extends AcceptHeaderLocaleResolver {

   private Locale urlLocal;

   public Locale resolveLocale(HttpServletRequest request) {
       
       return urlLocal != null?urlLocal:request.getLocale();
   } 
   @Override
   public void setLocale(HttpServletRequest request, HttpServletResponse response, Locale locale) {
       urlLocal = locale;
   }
}
  1. spring中的request bean依赖于接口实现,下面是其接口和对应的实现类
public interface I18nSessionService {
  
  public void setRc(RequestContext rc);
  
  public void setRcByRequest(HttpServletRequest request);
  
  public String getMessage(String key); 
  
  public String getMessage(String key,Object info);
  
  public String getMessage(String key,Object...objects);
}
  • 下面注解主要为设置作用域为request,注入messageSource组件,并提供RequestContext用于切换语言配置国际化
@Component
@RequestScope(proxyMode = ScopedProxyMode.INTERFACES)
public class I18nSessionServiceImpl implements I18nSessionService {

  @Autowired  
  @Qualifier("messageSource")  
  private MessageSource resources;
  //前端设置切换语言是设置
  private RequestContext rc ;
  
  public RequestContext getRc() {
      return rc;
  }
  @Override
  public void setRcByRequest(HttpServletRequest request) {
      // TODO Auto-generated method stub
      this.rc = new RequestContext(request);
  }
  
  @Override
  public void setRc(RequestContext rc) {
      this.rc = rc;
  }

  @Override
  public String getMessage(String key) {
      // TODO Auto-generated method stub
      if(null != getRc()){
          return getRc().getMessage(key);
      }
      return resources.getMessage(key, null, null);
  }

  @Override
  public String getMessage(String key, Object info) {
      // TODO Auto-generated method stub
      if(null != getRc()){
          return getRc().getMessage(key, new Object[]{info});
      }
      return resources.getMessage(key, new Object[]{info}, null);
  }

  @Override
  public String getMessage(String key, Object... objects) {
              if(null != getRc()){
                  return getRc().getMessage(key, objects);
              }
              return resources.getMessage(key, objects, null);
  }
}
  1. 自定义的拦截器中处理,国际化组件的请求bean
@Component
public class ControllerInterceptor implements HandlerInterceptor {
  /**
   * 在Controller方法前进行拦截
   */
  @Resource
  private I18nSessionService  i18nSessionService;
  private static Logger log = Logger.getLogger("ControllerInterceptor");
  public boolean preHandle(HttpServletRequest request,
                           HttpServletResponse response, Object handler) throws Exception {
      log.info("RequestURI :"+request.getRequestURI());
      //解决跨域
      response.setHeader("Access-Control-Allow-Origin", "*");
      response.setHeader("Access-Control-Allow-Methods","POST");
      response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type");
      //拦截器中对所有的请求处理,保存到request bean中
      i18nSessionService.setRcByRequest(request);
      return true;
  }

  public void postHandle(HttpServletRequest request,
                         HttpServletResponse response, Object handler,
                         ModelAndView modelAndView) throws Exception {
  }
  /**
   * 在Controller方法后进行拦截
   */
  public void afterCompletion(HttpServletRequest request,
                              HttpServletResponse response, Object handler, Exception ex)
          throws Exception {
  }
}
  1. 使用方式
//发送请求 http://localhost:8080/testI18n.do?locale=en_US 或者http://localhost:8080/testI18n.do?locale=zh_CN
@Resource
private I18nSessionService is;
@RequestMapping(value = "/testI18n.do", method = { RequestMethod.POST,RequestMethod.GET})
public @ResponseBody
   Result testI18n(){
       return new Result(true, is.getMessage("argument.required"), "");
}
  • 总结:以上就是基本实现过程。在微服务中由于服务发现提供的服务模块会自适应调整所以不适合使用session 的方式处理国际化。这里使用request和url将粒度划分的更细,处理也更灵活
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349

推荐阅读更多精彩内容