Since you want to output <br />
, just do:
<af:outputText value="#{msg.TCW_SELECT_PART_ANALYSIS}<br />#{msg.TCW_SELECT_PART_ANALYSIS2}" escape="false" />
The attribute escape="false"
is there to avoid the <br />
being HTML-escaped.
You can even display the two messages in separate tags and put the <br />
in plain text between them.
<af:outputText value="#{msg.TCW_SELECT_PART_ANALYSIS}" />
<br />
<af:outputText value="#{msg.TCW_SELECT_PART_ANALYSIS2}" />
If you're still on JSF 1.1 or older, then you need to wrap plain HTML in <f:verbatim>
like:
<f:verbatim><br /></f:verbatim>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…