使用标签 uiremove

我们需要在任何我们想要评论它的 JSF 代码之间使用标签 <ui:remove></ui:remove>

<ui:remove>
    <h:outputLabel value="Yeah, I'm really commented" />
</ui:remove>

当然,你需要将此 xmlns 添加到标头 html 标记中。检查这个最小的完整示例:

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets">
    
    <ui:remove>
        <h:outputLabel value="Yeah, I'm really commented" />
    </ui:remove>
    
</html>