reader.setErrorHandler(this);
//reader.setFeature("http://xml.org/sax/features/validation",true);
//reader.setFeature("http://xml.org/sax/features/namespaces",true);
reader.parse(new InputSource(IOUtils.getInputStream(xml, getClassLoader())));
} catch (Exception e) {
throw new DIContainerException(e);
}
return beans;
}