private void feedStandardConfig() throws IOException, SAXException
{
InputStream stream = ClassUtils.getResourceAsStream(STANDARD_FACES_CONFIG_RESOURCE);
if (stream == null)
throw new FacesException("Standard faces config " + STANDARD_FACES_CONFIG_RESOURCE + " not found");
if (log.isInfoEnabled())
log.info("Reading standard config " + STANDARD_FACES_CONFIG_RESOURCE);
getDispenser().feed(getUnmarshaller().getFacesConfig(stream, STANDARD_FACES_CONFIG_RESOURCE));
stream.close();
}