在资源包中使用html标签

时间:2010-08-27 13:29:23

标签: java

我尝试从包含html标签的资源包中发出消息,如:

application.portal.action.help=test <a href\="https://google.ro" target\="_blank">the opt in conditions</a>

在jsf outputLabel中:

<h:outputLabel id="test" value="#{myupmessages['application.portal.action.help']}"></h:outputLabel>

嗯......文本呈现为呈现链接的纯文本iso。

你有什么想法吗?为什么?

感谢。

1 个答案:

答案 0 :(得分:3)

找到解决方案:

我确实需要添加:

escape="false"

到outputLabel控件:)