setConfig(System.getProperties());
// Initialise the registerable drivers
try {
mountContexts.put("classpath", new ClassPathMountFactory(context.getClassLoader()));
mountContexts.put("file", new FileMountFactory(Utils.getCurrentDirectory()));
mountContexts.put("war", new WarMountFactory(context));
}
catch (Exception e) {
log.log(Level.SEVERE, "Coult not initialize classpath driver", e);
return;