/** Wrap ServerMain(). Sets mongo as the db provider. */
  public static void main(String[] args) throws Exception {

    DBService.setDb(MongoDBService.getDb());

    ServerMain.main(args);
  }