如何本地化数据库struts提取的文本

时间:2014-08-25 10:34:58

标签: localization struts-1

要本地化任何文字,我们一般都会这样做

 index.jsp

 <!--<span>hello</span>-->
 <span><bean:message key="index.hello"/></span>

 ApplicationResource_en.properties
 index.hello=hello

 ApplicationResource_es.properties
 index.hello=hola

我的问题是如何本地化动态文本,如

index.jsp
<span><bean:write "information" property="hello" />

请建议?

1 个答案:

答案 0 :(得分:0)

您可以使用bean:message标签而不是bean:写如下

<bean:message bundle= "bundleKey" key= "a.message" />

Bundle是语言环境的名称