Richfaces 4.3 - 禁用资源(JS / CSS)加载

时间:2014-09-12 12:44:31

标签: java richfaces web.xml

有没有办法防止在4.3。*版本上加载richfaces资源?旧的RF版本的设置以及我在谷歌上找到的任何其他相关设置都不起作用:

<context-param>  
    <param-name>org.richfaces.resourceOptimization.enabled</param-name>  
    <param-value>true</param-value>  
</context-param>
<context-param>
    <param-name>org.richfaces.LoadStyleStrategy</param-name>
    <param-value>NONE</param-value>
</context-param>
<context-param>
    <param-name>org.richfaces.LoadScriptStrategy</param-name>
    <param-value>NONE</param-value>
</context-param>

2 个答案:

答案 0 :(得分:0)

此功能尚未在RichFaces 4.x中实现,请参阅故障单:RF-11514。 同样在故障单的评论中,我们提供了一种解决方法来实现自己的ResourceMapper

要覆盖特定的脚本/资源或选择特定版本的库,请考虑使用resource mapping

答案 1 :(得分:0)

如果您更改<h:head>的{​​{1}},则RichFaces不会注入脚本。但是,您必须手动插入其他所有内容,因此我建议您首先使用<head>加载页面并查看生成的HTML。