如何使用 <p:outputlable> 显示符号 < 和 >

how to display symbol < and > using <p:outputlable>

我是 primefaces 的新手,我收到错误 Error Parsing /pages/1.xhtml: Error Traced[line: 134] The value of attribute "value" associated with an element类型 "null" 不能包含 '<' 字符。 谁知道如何设置 < 和 > 符号?

<p:outputLabel value="< 10 min" />
<p:outputLabel value="> 10 min" />

逃避他们
<p:outputLabel value="&lt; 10 min" />
<p:outputLabel value="&gt; 10 min" />