String value = (String) properties.get(key);
if (key.startsWith("class.")) {
config.addClass(Resources.classForName(value));
}
if (key.startsWith("map.")) {
config.addResource(value);
}
}
Properties props = new Properties();
props.putAll(properties);