springMVC基于session的国际化实现

       springMVC的国际化功能主要是为了解决软件的多语言实现问题。

        以下是主要的配置信息:(spring+springMVC+myBatis框架,这里持久层框架不限)

第一:配置资源文件。

     所谓的资源文件,即是不同语言的对应信息,需要注意两点:其一是资源文件的命名规则,basename_language_country_varient.properties,language、country和variant的值需要是Locale类中的已有值。如下配置了两个资源文件,其中的信息都是以键值对的形式书写,而且两个文件中的key必须一致,这也是需要注意的第二点。如文件命名message_en_US.properties、message_zh_CN.properties,示例内容user.name=name。

      在xml文件中配置资源文件的信息,如编码、文件名前缀等。


	
	
	
	

第二:拦截器配置。

       拦截器可以使用默认配置即可,当然也可以自定义,需要实现HandlerInterceptor。 



	
	

	
	

第三:配置localeResolver


第四:页面请求及解析方式

    页面请求:

英文
中文

  页面解析:

            解析方式一:c标签

<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>

            解析方式二:spring标签

<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>

补充:自定义拦截器时的拦截器实现

/**
 * 基于session的springMVC国际化
 * 拦截器方法:用于设定请求的国际化语言
 * @author giserDev
 *
 */
public class LanguageInterceptor implements HandlerInterceptor{


    @Override  
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)  
            throws Exception {  
        String language = request.getParameter("locale");  
        if (language != null&&language.equals("zh_CN")) {  
            Locale locale = new Locale("zh", "CN");  
            request.getSession().setAttribute(  
                            SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME,  
                            locale);  
            request.setAttribute("language", language);  
        } else if (language != null&&language.equals("en_US")) {  
            Locale locale = new Locale("en", "US");  
            request.getSession().setAttribute(  
                            SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME,  
                            locale);  
            request.setAttribute("language", language);  
        } else {  
            request.getSession().setAttribute(  
                    SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME,  
                    LocaleContextHolder.getLocale());  
            language = LocaleContextHolder.getLocale().getLanguage();  
            request.setAttribute("language", language);  
        }  
        
        return true;  
    }  
    
    @Override  
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,  
            ModelAndView modelAndView) throws Exception {  
    }  
    
    @Override  
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)  
            throws Exception {  
    }  

}

    其中en_US和zh_CN是国际化标准所定义的,更多信息如下:

国家/地区 语言缩写代码 国家/地区 语言缩写代码
简体中文(中国) zh_CN 繁体中文(中国台湾地区) zh_TW
英语(英国) en_GB 英语(美国) en_US

如何查看国际化方面的信息?

   进入标准化国际组织主页,网址为:International Organization for Standardization。在Standards下找到Popular standards,即流行的国际标准,点击进入后可以看到有很多标准,如ISO 13485 Medical devices医疗设备、ISO 22000 Food safety management食品安全等,找到ISO 639 Language codes即语言编码即是我们所需要的信息,它的表述为Describe languages in an internationally accepted way with this standard。在点击打开的新页面中,点击Codes list,即可查看到关于语言的国际化标准信息。这里我直接粘贴过来了2017年更新的语言编码信息说明。

Codes for the Representation of Names of Languages

Codes arranged alphabetically by alpha-3/ISO 639-2 Code

Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as "B" (bibliographic) or "T" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code.

你可能感兴趣的:(#,Spring,spirngMVC,i18n)