Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Netbeans 中编译 JSF 页面时,我很感兴趣 JSF 页面和 faces-config.xml 文件中的注释会发生什么?它们是保留还是被编译器删除。如果它们被保留,我可以以某种方式删除它们吗?我知道编译器会删除 Java bean 代码中的注释,但我不确定 JSF 页面。
对于 JSF 页面,您可以在 中使用以下上下文参数web.xml:
web.xml
<context-param> <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name> <param-value>true</param-value> </context-param>
配置文件未处理。