要本地化任何文字,我们一般都会这样做
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" />
请建议?
答案 0 :(得分:0)
您可以使用bean:message标签而不是bean:写如下
<bean:message bundle= "bundleKey" key= "a.message" />
Bundle是语言环境的名称