public class CDNResourceHandler extends ResourceHandlerWrapper
ResourceHandler
implementation allows the developer to provide CDN URLs instead of the default local
URLs for JSF resources as provided by <h:outputScript>
, <h:outputStylesheet>
and <h:graphicImage>
when the current JSF project stage is not set to
Development
.
To get it to run, this handler needs be registered as follows in faces-config.xml:
<application> <resource-handler>org.omnifaces.resourcehandler.CDNResourceHandler</resource-handler> </application>
To configure the CDN URLs, a "org.omnifaces.CDN_RESOURCE_HANDLER_URLS"
context parameter has to be provided wherein the CDN resources are been specified as a commaseparated string of
libraryName:resourceName=http://cdn.example.com/url
key=value pairs. The key represents the default
JSF resource identifier and the value represents the full CDN URL, including the scheme. The CDN URL is not validated
by this resource handler, so you need to make absolutely sure yourself that it is valid. Here's an example:
<context-param> <param-name>org.omnifaces.CDN_RESOURCE_HANDLER_URLS</param-name> <param-value> js/script1.js=http://cdn.example.com/js/script1.js, somelib:js/script2.js=http://cdn.example.com/somelib/js/script2.js, otherlib:style.css=http://cdn.example.com/otherlib/style.css, images/logo.png=http://cdn.example.com/logo.png </param-value> </context-param>
With the above configuration, the following resources:
<h:outputScript name="js/script1.js" /> <h:outputScript library="somelib" name="js/script2.js" /> <h:outputStylesheet library="otherlib" name="style.css" /> <h:graphicImage name="images/logo.png" />
Will during non-Development
stage be rendered as:
<script type="text/javascript" src="http://cdn.example.com/js/script1.js"></script> <script type="text/javascript" src="http://cdn.example.com/somelib/js/script2.js"></script> <link type="text/css" rel="stylesheet" href="http://cdn.example.com/otherlib/style.css" /> <img src="http://cdn.example.com/logo.png" />
Note that you can also use this on resources provided as ResourceDependency
by the JSF implementation and/or
component libraries. For example, JSF's own javax.faces:jsf.js
resource which is been used by
<f:ajax>
can be provided by a CDN URL using the following syntax:
javax.faces:jsf.js=http://cdn.example.com/jsf.js
If you're also using the CombinedResourceHandler
, then you need to understand that CDN resources can
simply not be combined, as that would defeat the CDN purpose. The CombinedResourceHandler
will therefore
automatically exclude all CDN resources from combining when the current JSF project stage is not
set to Development
.
Modifier and Type | Field and Description |
---|---|
static String |
PARAM_NAME_CDN_RESOURCES
The context parameter name to specify CDN URLs for the given resource identifiers.
|
LOCALE_PREFIX, RESOURCE_EXCLUDES_DEFAULT_VALUE, RESOURCE_EXCLUDES_PARAM_NAME, RESOURCE_IDENTIFIER
Constructor and Description |
---|
CDNResourceHandler(ResourceHandler wrapped)
Creates a new instance of this CDN resource handler which wraps the given resource handler.
|
Modifier and Type | Method and Description |
---|---|
Resource |
createResource(String resourceName,
String libraryName)
Creates a new instance of a resource based on the given resource name and library name.
|
ResourceHandler |
getWrapped() |
createResource, createResource, getRendererTypeForResourceName, handleResourceRequest, isResourceRequest, libraryExists
public static final String PARAM_NAME_CDN_RESOURCES
public CDNResourceHandler(ResourceHandler wrapped)
Development
, then the CDN resources will be initialized
based on the "org.omnifaces.CDN_RESOURCE_HANDLER_URLS" context
parameter.wrapped
- The resource handler to be wrapped.IllegalArgumentException
- When the context parameter is missing or is in invalid format.public Resource createResource(String resourceName, String libraryName)
Development
, then the properties file will be consulted
if any CDN URL is available for the given resource name and library name. If there is none, then just return the
JSF default resource, otherwise return a wrapped resource whose Resource.getRequestPath()
returns the CDN
URL as is been set in the "org.omnifaces.CDN_RESOURCE_HANDLER_URLS"
context parameter.createResource
in class ResourceHandlerWrapper
public ResourceHandler getWrapped()
getWrapped
in interface FacesWrapper<ResourceHandler>
getWrapped
in class ResourceHandlerWrapper