我在属性文件中的以下属性中进行了定义。
<b>Profile 1:</b> <br> Only the market(s) selected above
我在bean profile1 中设置了这个
<h:outputText style="font-size:12px;" value="#{bean.profile1}" />
但结果是
<b>Profile 1:</b> <br> Only the market(s) selected above
请任何人帮助如何在属性文件中使用break和粗体
?
在h:outputText
:中使用escape=false
<h:outputText style="font-size:12px;" value="#{bean.profile1}" escape="false"/>
否则,在jsf处理过程中会转义所有特殊字符。