如何将bean:message插入字符串?

时间:2013-01-08 16:31:06

标签: java jsp struts

我想做以下

<div id="Grants the " + <bean:message key="label.foo/>/>

如何做到这一点?基本上,它将bean:message连接到字符串。

1 个答案:

答案 0 :(得分:1)

您可以在常规HTML标记中嵌入Struts(和其他JSP标记库)标记:

<div id="Grants the <bean:message key="label.foo"/>"/>

如果带有密钥label.foo的消息资源将“Foo”文本映射到它,那么结果将是:

<div id="Grants the Foo"/>

虽然值得注意的是,这不是id属性的有效值。