return build(sourceProps);
}
}
public static DataSource build(Map<String, String> properties) {
return new PoolingDataSourceFactory(properties.get("driverClassName"), properties.get("url"),
properties.get("username"), properties.get("password")).getObject();
}