我在我的JSF2应用程序中使用了某些页面的primefaces。我想控制页面从哪里获取jquery.js。有没有办法在faces-config或web.xml中指定不添加JQuery javascript库。
例如,不要添加:
<script type="text/javascript" src="/myappcontextroot/javax.faces.resource/jquery/jquery.js.jsf?ln=primefaces"></script>
我更喜欢页面输出:
<script type="text/javascript" src="http://mydomain.com/jquery/jquery.js"></script>
或者在需要jquery库时不输出任何内容。 (我将手动将上面的内容添加到页面中。)
这甚至可能吗?如果是这样,怎么样?
答案 0 :(得分:8)
您基本上需要一个自定义resource handler,只要请求资源Resource#getRequestPath()
,就会在primefaces:jquery/jquery.js
上返回所需的外部网址。
E.g。
public class CDNResourceHandler extends ResourceHandlerWrapper {
private ResourceHandler wrapped;
public CDNResourceHandler(ResourceHandler wrapped) {
this.wrapped = wrapped;
}
@Override
public Resource createResource(final String resourceName, final String libraryName) {
final Resource resource = super.createResource(resourceName, libraryName);
if (resource == null || !"primefaces".equals(libraryName) || !"jquery/jquery.js".equals(resourceName)) {
return resource;
}
return new ResourceWrapper() {
@Override
public String getRequestPath() {
return "http://mydomain.com/jquery/jquery.js";
}
@Override
public Resource getWrapped() {
return resource;
}
};
}
@Override
public ResourceHandler getWrapped() {
return wrapped;
}
}
要使其运行,请按以下方式将其映射到faces-config.xml
:
<application>
<resource-handler>com.example.CDNResourceHandler</resource-handler>
</application>
JSF实用程序库OmniFaces提供了CDNResourceHandler
风格的可重用解决方案,在您的情况下配置为
<context-param>
<param-name>org.omnifaces.CDN_RESOURCE_HANDLER_URLS</param-name>
<param-value>primefaces:jquery/jquery.js=http://mydomain.com/jquery/jquery.js</param-value>
</context-param>