How can I remove HTML comments in my Facelets?

泪湿孤枕 提交于 2019-12-17 09:37:53

问题


I would like to remove all HTML comments from my facelets before delivering to end users. Does any standard approach exist?


回答1:


There are actually two ways:

  1. To remove ALL comments, add this to web.xml:

    <context-param>
        <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
        <param-value>true</param-value>
    </context-param>
    

    or when you're still on JSF 1.2 which doesn't use Facelets as default view technology yet:

    <context-param>
        <param-name>facelets.SKIP_COMMENTS</param-name>
        <param-value>true</param-value>
    </context-param>
    
  2. To remove specific comments only, use <ui:remove>.

    <ui:remove><!-- This is a HTML comment. --></ui:remove>
    


来源:https://stackoverflow.com/questions/3388109/how-can-i-remove-html-comments-in-my-facelets

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!