我们在JSTL fmt[1]中已经接触过国际化i18n,本地化L10n。使用JSTL fmt(Internationalization and Formatting tag library),有一些局限性:
Spring的i18n解决这些问题,并提供更为便捷的方式;不仅在jsp中使用,还可以在代码中使用;可以直接错误object(如Throwable)传递到本地化API,实现直接本地化错误信息。
和fmt一样,Spring的i18n也使用resource bundle(java.util.ResourceBundle)和message format(java.text.MessageFormat),并在resource bundle之上提供抽象的message source,变得更容易本地化。resource bundle是消息中需要本地化的消息格式的集合。
消息格式(java.text.MessageFormat)含有占位模板,在运行时被替换。例子如下
There are {0} cats on the farm.
There are {0,number,integer} cats on the farm.
The value of Pi to seven significant digits is {0,number,#.######}.
My birthdate: {0,date,short}. Today is {1,date,long} at {1,time,long}.
My birth day: {0,date,MMMMMM-d}. Today is {1,date,MMM d, YYYY} at {1,time,hh:mma).
There {0,choice,0#are no cats|1#is one cat|1
这些占位符号(placeholder)是有顺序的,替换是按这个顺序,而不是语句中出现的顺序(语句中的顺序本来就是要本地化)。
With a {0,number,percentage} discount, the final price is {1,number,currency}.
占位符是可以带格式的,下面#表示序号,斜体表示用户自定义的格式值
{#}
{#,number}
{#,number,integer}
{#,number,percent}
{#,number,currency}
{#,number,自定义格式,遵循java.text.DecimalFormat}
{#,date}
{#,date,short}
{#,date,medium}
{#,date,long}
{#,date,full}
{#,date,自定义格式,遵循java.text.SimpleDateFormat}
{#,time}
{#,time,short}
{#,time,medium}
{#,time,long}
{#,time,full}
{#,time,自定义格式,遵循java.text.SimpleDateFormat}
{#,choice,自定义格式,遵循java.text.ChoiceFormat}
resource bundle是这些message format的集合,一般采用properties文件的方式,key就是message code,value就是message format。例如:
alerts.current.date=Current Date and Time: {0,date,full} {0,time,full}
文件的命名规则如下:
[baseName]_[language]_[script]_[region]_[variant]
[baseName]_[language]_[script]_[region]
[baseName]_[language]_[script]
[baseName]_[language]_[region]_[variant]
[baseName]_[language]_[region] 例如labels_en_US.properties
[baseName]_[language] 例如labels_en.properties
以上前面的比后面具有优先权。如果只有baseName,language和variant,最匹配的是第4个,例子为:baseName_en__JAVA
对于JSTL fmt:
如果我们需要从数据库中获取,就需要自己实现ResourceBundle,然而ResourceBundle实例在同一时刻,只能支持一个Locale,它解析message的方法不带locale参数,因此需要为不同的locale提供不同的ResourceBundle实例。这导致实现的复杂。
Spring的message source在resource bundle之上提供了抽象和封装,实现了org.springframework.context.MessageSource接口,接口提供了三个方法,可以看到locale是方法的参数,无需为不同的locale创建不同的实例,此外,已经返回解析后的message,无需再根据message format进行解析。
目前,Spring提供连个MessageSource接口的实现:
在/WEB-INF/i18n目录下设置两个资源文件。
test_en_US.properties
foo.test = Hello, {0} {1}
foo.message = This is the default message. Args: {0}, {1}, {2}.
test_zh_CN.properties文件需要注意,在eclipse下,properties文件缺省采用ISO-8859-1编码,例子如下
foo.test = \u60A8\u597D, {1} {0}
这样看简直是疯狂,因此,我们首先要将文件编码改为UTF-8等可以看中文的方式,点击该文件,按右键选择Properties,然后进行修改。
foo.test = 您好, {1} {0}
foo.message = 这是缺省消息,参数: {0}, {1}, {2}.
我们在root上下文中进行设置
public class RootContextConfiguration implements AsyncConfigurer,SchedulingConfigurer{
//... 略 ...
@Bean //【注意】这个bean的名字必须叫messageSource,否则无效
public MessageSource messageSource(){
ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
//如果设置为-1,表示Cache forever。一般生产环境下采用-1,开发环境为了方便调测采用某个正整数,规范地我们可通过profile来定义
messageSource.setCacheSeconds(5);
/* 设置缺省的资源文件的编码,
* 如果个别文件采用其他编码(不适用缺省编码,但一般我们应统一进行设置),可以通过setFileEncoding()来指定
* Properties properties = new Properties();
* properties.setProperty("/WEB-INF/i18n/test_zh_CN", "GBK");
* messageSource.setFileEncodings(properties); */
messageSource.setDefaultEncoding(StandardCharsets.UTF_8.name());
//设置properties文件的basename,以便找到响应的资源文件
messageSource.setBasenames("/WEB-INF/i18n/messages", "/WEB-INF/i18n/errors","/WEB-INF/i18n/test");
return messageSource;
}
}
小例子中我们采用文件作为资源,在实际中也可以会使用到数据库,例如NoSQL仓库,我们需要构建自定义的message source,这在后面介绍。
@Service
public class MyTestService implements TestService{
private static final Logger logger = LogManager.getLogger();
@Inject MessageSource messageSource;
@Override
public void testSourceMessage() {
String msg = this.messageSource.getMessage("foo.message", new Object[]{"One","Two","Three"}, Locale.US);
logger.info(msg);
msg = this.messageSource.getMessage("foo.message", new Object[]{"一","二","三"}, Locale.getDefault());
logger.info(msg);
msg = this.messageSource.getMessage("foo.lable", new Object[]{"Hi"}, "{0}, my friend", Locale.ENGLISH);
logger.info(msg);
}
}
输出结果:
14:43:36.789 [INFO ] MyTestService:20 testSourceMessage() - This is the default message. Args: One, Two, Three.
14:43:36.790 [INFO ] MyTestService:22 testSourceMessage() - 这是缺省消息,参数: 一, 二, 三.
14:43:36.791 [INFO ] MyTestService:24 testSourceMessage() - Hi, my friend
Locale.US将匹配test_en_US.properties,如果我们设置Locale.ENGLISH,由于并没有test_en.propertiesst,将采用缺省的Locale值,即匹配了test_zh_CN.properties,如果仍没有找到,采用default message的参数。
测试案例的Controller相关代码如下:
@RequestMapping(value = "/test", method = RequestMethod.GET)
public String test(Map model){
model.put("firstName", "San");
model.put("lastName", "Zhang");
return "home/test";
}
在jsp中使用spring:message,如下。使用方法参考文档[2]
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
... ...
... ...
我们可以得到页面输出您好, Zhang San
。spring:message和fmt:message很相似,同样有htmlEscape属性,缺省为false。如果某个jsp中有大量需要htmlEscape的spring:message,我们可以在jsp中设置
,这将对之后的代码有效。如果我们整个app都有大量的htmlEscape,我们可以在web.xml中配置。
defaultHtmlEscape
true
我们仍可以沿用JSTL fmt tag,如下,也可得到正确的输出。
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
... ...
... ...
我们去查看log,无论是采用spring的tag还是fmt的tag,log是同样的,同时通过ReloadableResourceBundleMessageSource bean来进行处理。
16:23:45.837 [TRACE] (Spring) JstlView - Rendering view with name 'home/test' with model {firstName=San, lastName=Zhang} and static attributes {}
16:23:45.837 [DEBUG] (Spring) JstlView - Added model object 'firstName' of type [java.lang.String] to request in view with name 'home/test'
16:23:45.837 [DEBUG] (Spring) JstlView - Added model object 'lastName' of type [java.lang.String] to request in view with name 'home/test'
16:23:45.837 [DEBUG] (Spring) JstlView - Forwarding to resource [/WEB-INF/jsp/view/home/test.jsp] in InternalResourceView 'home/test'
16:23:45.859 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - Re-caching properties for filename [/WEB-INF/i18n/messages_zh_CN] - file hasn't been modified
16:23:45.859 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - No properties file found for [/WEB-INF/i18n/messages_zh] - neither plain properties nor XML
16:23:45.859 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - No properties file found for [/WEB-INF/i18n/messages] - neither plain properties nor XML
16:23:45.862 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - Re-caching properties for filename [/WEB-INF/i18n/errors_zh_CN] - file hasn't been modified
16:23:45.863 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - No properties file found for [/WEB-INF/i18n/errors_zh] - neither plain properties nor XML
16:23:45.863 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - No properties file found for [/WEB-INF/i18n/errors] - neither plain properties nor XML
16:23:45.866 [DEBUG] (Spring) ReloadableResourceBundleMessageSource - Re-caching properties for filename [/WEB-INF/i18n/test_zh_CN] - file hasn't been modified
16:23:45.866 [TRACE] (Spring) DispatcherServlet - Cleared thread-bound request context: org.apache.catalina.connector.RequestFacade@e05013
16:23:45.866 [DEBUG] (Spring) DispatcherServlet - Successfully completed request
第一种方式很简单,推荐使用。如果有与某种原因不能使用第一种方式,需要采用filter,我们首先要将filter设置为spring的bean,这样它才可以注入message source,方式和之前学习的Listener一样。我们在Bootstrap初始化root context后代码设置filter,这样确保可以注入root context中的bean,设置相关的jsp经过它。下面是相关filter的代码:
public class JstlLocalizationContextFilter implements Filter {
private MessageSource jstlMessageSource;
@Inject MessageSource messageSource;
public JstlLocalizationContextFilter() { }
@Override
public void destroy() { }
@Override
public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain)
throws IOException,ServletException {
// Exposes JSTL-specific request attributes specifying locale and resource bundle for
// JSTL's formatting and message tags,using Spring's locale and MessageSource.
JstlUtils.exposeLocalizationContext((HttpServletRequest)request, this.jstlMessageSource );
chain.doFilter(request, response);
}
@Override
public void init(FilterConfig fConfig) throws ServletException {
ServletContext servletContext = fConfig.getServletContext();
WebApplicationContext rootContext = WebApplicationContextUtils
.getRequiredWebApplicationContext(servletContext);
AutowireCapableBeanFactory factory = rootContext.getAutowireCapableBeanFactory();
factory.autowireBeanProperties(this, AutowireCapableBeanFactory.AUTOWIRE_BY_TYPE,true);
factory.initializeBean(this,"JstlLocalizationContextFilter");
/* 【1】第一个参数servletContext首先检查JSTL的"javax.servlet.jsp.jstl.fmt.localizationContext"
* 的context-param(web.xml),如果有设置,生成相应的ResourceBundleMessageSource实例。
* 【2】第二个参数为spring的MessageSource。
* 将根据这两个参数获得子message source */
this.jstlMessageSource = JstlUtils.getJstlAwareMessageSource( servletContext, this.messageSource );
}
}
相关文章相关链接: 我的Professional Java for Web Applications相关文章