1.Overview
支持国际化的模块:
- 1. the UI Tags
- 2. Messages and Errors from the ValidationAware interface (implemented by ActionSupport and ValidationAwareSupport)
- 3. Within action classes that extend ActionSupport through the getText() method
- 2.Resource Bundle Search Order(Resouce文件搜索规则)
- 1. ActionClass.properties
- 2. BaseClass.properties (all the way to Object.properties)
- 3. Interface.properties (every interface and sub-interface)
- 4. ModelDriven's model (if implements ModelDriven), for the model object repeat from 1
- 5. package.properties (of the directory where class is located and every parent directory all the way to the root directory)
- 6. search up the i18n message key hierarchy itself
- 7. global resource properties
规则如下图
Package hierarchy
To clarify #5, while traversing the package hierarchy, Struts 2 will look for a file package.properties:
com/
acme/
package.properties
actions/
package.properties
FooAction.java
FooAction.properties
If FooAction.properties does not exist, com/acme/action/package.properties will be searched for, if not found com/acme/package.properties, if not found com/package.properties, etc.
3.Examples
[list]
[*]
<s:property value="getText('some.key')" />
可以嵌套在ui tags中
[*]
<s:text name="some.key" />
[*]
<s:i18n name="some.package.bundle" >
<s:text name="some.key" />
</s:i18n>
指定显示需要查找的resource bundle的文件.
[/list]
4.I18n Interceptor
该拦截器可以在运行过程中改变某个session对应的locale信息,和localization配合以实现internationlization.
5.Global Resources (struts.custom.i18n.resources) in struts.properties
6.由于struts2支持与action相关的resource的定义,导致可以造成会有多个重复的key的存在.
解决该问题的方法是,通过定义ActionSupport.properties in com/opensymphony/xwork2 and put it on your classpath.来实现所有action的key的统一定义.不过这样一来所有的action都必须继承自ActionSupport.
由以上启发,其实也可以自己写一个接口,当作标记接口,所有的action都实现该接口,并且在该接口的文件夹中加入interfacename.properties文件也可以解决该问题.
7.Formatting Dates and Numbers(日期和数字的格式化)
[list]
struts2其实通过i10n来实现数字和日期的格式化的.
定义日期或者数字显示的格式需要利用ognl表达式的特性.
例子
format.time = {0,time}
format.number = {0,number,#0.0##}
format.percent = {0,number,##0.00'%'}
format.money = {0,number,\u00A4##0.00}
通过s:text标签嵌套需要转化的数字或者日期的值来实现以上数据的格式化.
Localizing form data with getText代码示例如下
<s:textfield key="orderItem.price" value="%{getText('format.number',{'orderItem.price'})}" />
详细的说明请参考getText in ActionSupport代码中实际调用的方法为
textProvider.getText(String key, String[] args)
[/list]
分享到:
相关推荐
《ARM System Developers Guide - Designing and Optimizing System Software》是一本深入探讨ARM处理器系统软件设计与优化的专业书籍,由Andrew N. Sloss、Dominic Symes、Chris Wright和John Rayfield四位在ARM...
标题《qgroundcontrol-developers-guide-en》表明本篇指南是关于qgroundcontrol(简称QGC)的开发者使用说明,QGC是地面站控制软件,其主要功能是为PX4飞控系统进行配置。 描述中提到,这份开发者指南解释了QGC软件...
《Oracle Database 应用开发者指南:基础篇 10g Release 2(10.2)》是一份详尽的文档,旨在为那些希望利用Oracle数据库进行应用开发的专业人士提供全面的技术指导。此文档由Oracle公司发布,版本号为B14251-01,...
SIP2开发者指南 3M Standard Interchange Protocol V2.00 3M™ SelfCheck™ system SIP2 Interface Developer’s Guide
这个是ERSI官方文档,绝对权威,绝对经典。AO开发必读。
2. **脚本语言与编程**:ACT主要基于Python语言进行开发,因此熟悉Python语法是必要的。指南会介绍如何使用Python编写ACT脚本,实现对Workbench模型的操作和定制化功能。 3. **ACT组件开发**:学习如何创建自定义的...
这个是ERSI官方文档,绝对权威,绝对经典。AO开发必读。
Developers guide to ASP.NET
本指南将围绕“VxWorks Device Driver Developers Guide Vol”展开,深入解析驱动编程的核心概念和技术。 首先,VxWorks设备驱动的开发主要涉及三个卷: 1. **Vol1_6.6**: 这部分通常涵盖驱动程序的基础知识,包括...
标题:“Apache_CloudStack-4.3.0-Developers_Guide-en-US” 指明了文件的名称,这是一个针对开发者指南的文档,专为Apache CloudStack 4.3.0版本编写。 描述:“Apache_CloudStack-4.3.0-Developers_Guide-en-US....
Tosi -- Matplotlib for Python Developers -- 2009 -- code.7z
Nandi -- Spark for Python Developers -- 2015 -- code.7z
2-day-developers-guide.pdf
1. 文档标题为“json-developers-guide.pdf”,并特别指出是“oracle 19c json开发指南”。这说明文档是针对Oracle数据库19c版本下使用JSON数据格式进行开发的官方指南。Oracle 19c是一个企业级数据库版本,其对JSON...
名称:daily.dev Where developers gro ---------------------------------------- 版本:3.28.2 作者:https://daily.dev/ 分类:开发者工具 ---------------------------------------- 概述:获取为您量身定制的最...
该压缩包包含的文件“win95-a-developers-guide”很可能是本书的电子版,可能包括PDF文档、源代码示例或其他相关资源。 Windows 95是微软发布的一款具有里程碑意义的操作系统,它引入了全新的图形用户界面和多任务...
Struts、Spring和Hibernate是Java Web开发中的三大框架,它们的整合使用,通常被称为SSH(Struts2、Spring4、Hibernate5)框架集成。SSH整合能够实现MVC设计模式,提供松耦合、高可扩展性的应用解决方案。下面将详细...
MediaTek LinkIt Smart 7688 Developers Guide v_0.92-1 是一份针对MediaTek LinkIt Smart 7688开发平台的技术指南,适用于那些希望深入了解该平台并进行开发的工程师或爱好者。这份文档是英文版,为那些喜欢阅读...
·增加的多核处理器支持,包括Intel@ Core i7处理器、ARM MPCore and Cortex A9处理器、FreescaleQorIQ P2020处理器、Cavium 54xx/55xx/56xx/57xx/58xx系列处理器和RMI XLR/XLS系列处理器等,使客户能够根据他们...
《Kotlin for Android Developers》中文版是一本专为Android开发者准备的Kotlin编程语言指南。这本书深入浅出地介绍了Kotlin这一现代、简洁且强大的编程语言,旨在帮助开发者快速掌握Kotlin并将其应用到Android应用...