我在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库中的任何内容。(我将手动将上述内容添加到页面中)
这可能吗?如果有,怎么做?
你基本上需要一个自定义的资源处理程序,当资源primefaces:jquery/jquery.js
被请求时,它返回Resource#getRequestPath()
上所需的外部URL。
。
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>