Java的Struts框架中的主题模板和国际化设置
主题模板
如果不指定一个主题,然后struts2中会使用默认的xhtml主题。例如struts 2中选择标签:
<s:textfield name="name" label="name" />
生成html标记:
<tr> <td class="tdlabel"> <label for="empinfo_name" class="label">name:</label> </td><td> <input type="text" name="name" value="" id="empinfo_name"/> </td> </tr>
这里empinfo struts.xml文件中定义动作名称。
选择主题:
可以指定主题struts 2每一个标签的基础上或指定的主题struts 2使用,可以使用下列方法之一:
- 主题属性的具体标签
- 主题属性标签的周边表单标签
- 页面范围的属性,名为“主题”
- 请求范围属性名为“主题”
- 会话作用域属性命名为“主题”
- 应用程序作用域的属性命名为“主题”
在struts.properties struts.ui.theme属性(默认为xhtml)
以下语法指定他们在标签级别,如果愿意为不同的标签使用不同的主题:
<s:textfield name="name" label="name" theme="xhtml"/>
因为它不是非常实用,每个标签的基础上使用主题,所以干脆我们可以指定规则struts.properties文件中使用以下标签:
# standard ui theme struts.ui.theme=xhtml # directory where theme template resides struts.ui.templatedir=template # sets the default template type. either ftl, vm, or jsp struts.ui.templatesuffix=ftl
以下的结果是,我们拿起从本地化章节里我们使用默认设置struts.ui.theme= xhtml的struts-default.properties文件中,默认情况下,在 struts2-core.xy.z.jar文件,这是由主题。
主题如何工作的?
对于一个给定的主题,每一个struts标签有关联的模板,如:s:textfield -> text.ftl 和 s:password -> password.ftl等,这些模板文件来压缩struts2-core.xy.z.jar文件。这些模板文件保持一个预先定义的html布局为每个标签。所以struts2 框架生成最终的html标记代码使用sturts标签和相关的模板。
struts 2 tags + associated template file = final html markup code.
默认模板已经写在freemarker和他们有扩展名 .ftl。可以设计使用速度或jsp模板,并据此设置配置在使用struts.ui.templatesuffix 和 struts.ui.templatedir struts.properties。
创建新的主题:
最简单的方法来创建一个新的主题是复制现有的任何主题/模板文件,并做必要的修改。所以,让我们开始创建一个文件夹 webcontent/web-inf/classes 名为模板和子文件夹与我们新的主题的名称,例如webcontent/web-inf/classes/template/mytheme。从这里,可以从头开始构建模板,或者可以复制模板从struts2分布和根据需要进行修改。
我们要修改现有的默认模板xhtml学习目的。所以,现在让,我们复制内容从 struts2-core-x.y.z.jar/template/xhtml 到我们的主题目录,并只修改webcontent/web-inf/classes/template/mytheme/control.ftl文件。当我们打开control.ftl 它将有下面几行:
<table class="${parameters.cssclass?default('wwformtable')?html}"<#rt/> <#if parameters.cssstyle??> style="${parameters.cssstyle?html}"<#rt/> </#if> >
让我们上述文件control.ftl改变有以下内容:
<table style="border:1px solid black;">
如果检查看 form.ftl 会发现,control.ftl 这个文件中,form.ftl这个文件是指从xhtml主题。因此,让我们改变如下:
<#include "/${parameters.templatedir}/xhtml/form-validate.ftl" /> <#include "/${parameters.templatedir}/simple/form-common.ftl" /> <#if (parameters.validate?default(false))> onreset="${parameters.onreset?default('clearerrormessages(this); clearerrorlabels(this);')}" <#else> <#if parameters.onreset??> onreset="${parameters.onreset?html}" </#if> </#if> > <#include "/${parameters.templatedir}/mytheme/control.ftl" />
我假设不会有太多了解freemarker模板语言,仍然寻找ftl文件需要做什么,可以得到一个不错的主意。然而,让我们除上述变动外,并回到我们的本地化的例子,创建 webcontent/web-inf/classes/struts.properties 档案的以下内容:
# customized them struts.ui.theme=mytheme # directory where theme template resides struts.ui.templatedir=template # sets the template type to ftl. struts.ui.templatesuffix=ftl
现在这种变化后,右键点击项目名称,并单击export > war file创建一个war文件。然后部署此war在tomcat的webapps目录下。最后,启动tomcat服务器和尝试访问url http://localhost:8080/helloworldstruts2。这会给出以下画面:
xhtml主题复制后的变化,我们做了主题这是一个结果,可以看到一个表单组件周围的边框。 freemarker学习,如果你努力,那么将能够创建或修改主题很容易。至少现在,你必须有一个基本的了解sturts2主题和模板。
本地化/国际化
国际化(i18n)是规划和实施的产品和服务,使他们能很容易地适应特定的本地语言和文化的过程中,这个过程被称为本地化。国际化的过程有时也被称为翻译或本地化启用。国际化是缩写i18n,因为我和两端用n字打头,并有18个字符之间的第i个和最后n。
struts2提供本地化,即,国际化(i18n)支持,通过资源包,拦截器和标签库在以下地方:
- ui 标签
- 消息和错误
- 动作类
资源包:
struts2 使用资源包来提供web应用程序的用户多语言和区域选项。不必担心在不同的语言编写的网页。所有必须做的是创造一个资源包为每个想要的语言。资源包将包含标题,消息和其他文本的语言用户。资源包的文件,该文件包含键/值对您的应用程序的默认语言。
简单的命名格式的资源文件是:
bundlename_language_country.properties
这里,软件包可以actionclass,接口,超类,型号,封装,全球资源属性。接下来的部分 language_country ,en_us的等在这里,可以跳过这是可选的全国部分区域表示es_es和英语(美国),西班牙语(西班牙)表示语言环境的语言环境,例如代表国家。
当引用消息元素,其关键,按照下列顺序进行相应的消息包的struts框架搜索:
- actionclass.properties
- interface.properties
- superclass.properties
- model.properties
- package.properties
- struts.properties
- global.properties
多语言开发应用程序,就必须保持相应的到那些语言/区域设置多个属性文件定义的键/值对中的所有内容。例如,如果要开发应用程序(默认)为美国英语,西班牙语,和法语就必须创建三个属性文件。在这里,我将使用只global.properties文件,你可以利用不同的属性文件来隔离不同类型的消息。
- global.properties: 默认情况下,英语(美国)将被应用
- global_fr.properties: 这将是法语环境中使用。
- global_es.properties: 这将被用于西班牙语言环境。
访问消息:
有几种方法可以访问的信息资源,包括gettext的,文本标签,ui标签的关键属性,国际化标签。让我们来看看他们简单:
要显示i18n的文本,使用的调用属性标记gettext,或其他任何标记,例如ui标签如下:
<s:property value="gettext('some.key')" />
文本标记检索从默认的资源包,即一个消息 struts.properties
<s:text name="some.key" />
i18n标签推值栈上的任意资源束。 i18n标签范围内的其他标签可以显示该资源包的消息:
<s:i18n name="some.package.bundle"> <s:text name="some.key" /> </s:i18n>
大多数ui标签的键属性,可以用来检索的消息,从一个资源包:
<s:textfield key="some.key" name="textfieldname"/>
localization 例子:
创建的index.jsp从前一章到多种语言。相同的文件将被写入,如下所示:
<%@ page language="java" contenttype="text/html; charset=iso-8859-1" pageencoding="iso-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <title>employee form with multilingual support</title> </head> <body> <h1><s:text name="global.heading"/></h1> <s:url id="indexen" namespace="/" action="locale" > <s:param name="request_locale" >en</s:param> </s:url> <s:url id="indexes" namespace="/" action="locale" > <s:param name="request_locale" >es</s:param> </s:url> <s:url id="indexfr" namespace="/" action="locale" > <s:param name="request_locale" >fr</s:param> </s:url> <s:a href="%{indexen}" >english</s:a> <s:a href="%{indexes}" >spanish</s:a> <s:a href="%{indexfr}" >france</s:a> <s:form action="empinfo" method="post" namespace="/"> <s:textfield name="name" key="global.name" size="20" /> <s:textfield name="age" key="global.age" size="20" /> <s:submit name="submit" key="global.submit" /> </s:form> </body> </html>
我们将创建的success.jsp文件,该文件将被调用的情况下定义的动作返回success。
<%@ page language="java" contenttype="text/html; charset=iso-8859-1" pageencoding="iso-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <title>success</title> </head> <body> <s:property value="gettext('global.success')" /> </body> </html>
在这里,我们需要创建两个动作。 (一)第一个动作一个locale和照顾,用不同的语言显示相同的index.jsp文件(二)另一项行动是为了照顾提交表单本身。的动作都将返回success,但我们会采取不同的动作,返回值的基础上,因为我们的目的是不同的两个动作:
动作处理locale:
package com.yiibai.struts2; import com.opensymphony.xwork2.actionsupport; public class locale extends actionsupport{ public string execute() { return success; } }
提交表单处理动作:
package com.yiibai.struts2; import com.opensymphony.xwork2.actionsupport; public class employee extends actionsupport{ private string name; private int age; public string execute() { return success; } public string getname() { return name; } public void setname(string name) { this.name = name; } public int getage() { return age; } public void setage(int age) { this.age = age; } }
现在。让我们创建以下三个global.properties文件放在classpath中:
global.properties: global.name = name global.age = age global.submit = submit global.heading = select locale global.success = successfully authenticated global_fr.properties: global.name = nom d'utilisateur global.age = l'âge global.submit = soumettre des global.heading = sé lectionnez local global.success = authentifi é avec succès global_es.properties: global.name = nombre de usuario global.age = edad global.submit = presentar global.heading = seleccionar la configuracion regional global.success = autenticado correctamente
我们将创建struts.xml中两个动作如下:
<?xml version="1.0" encoding="utf-8"?> <!doctype struts public "-//apache software foundation//dtd struts configuration 2.0//en" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.devmode" value="true" /> <constant name="struts.custom.i18n.resources" value="global" /> <package name="helloworld" extends="struts-default" namespace="/"> <action name="empinfo" class="com.yiibai.struts2.employee" method="execute"> <result name="input">/index.jsp</result> <result name="success">/success.jsp</result> </action> <action name="locale" class="com.yiibai.struts2.locale" method="execute"> <result name="success">/index.jsp</result> </action> </package> </struts>
以下是web.xml文件中的内容:
<?xml version="1.0" encoding="utf-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="webapp_id" version="3.0"> <display-name>struts 2</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.filterdispatcher </filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
现在,右键点击项目名称,并单击 export > war file创建一个war文件。然后部署此war在tomcat的webapps目录下。最后,启动tomcat服务器和尝试访问url http://localhost:8080/helloworldstruts2/index.jsp。这会给出以下画面:
现在选择的任何一种语言,让我们说,我们选择西班牙语,这将显示以下结果:
您可以尝试用法语。最后,让我们尝试点击“submit ”按钮,当我们在西班牙语言,它会显示以下画面:
恭喜你,现在有一个多语种的网页,可以在全球范围内启动您的网站。
上一篇: Java跳出多重嵌套循环代码实例