String host = properties.getProperty("mongo.host");
int port = Integer.parseInt(properties.getProperty("mongo.port"));
String database = properties.getProperty("mongo.db");
return new MongoConnection(host, port, database);
} catch (Exception e) {
throw new RuntimeException(e);
}
}