11121314151617
public static final String HOST = "localhost"; public static final int PORT = 7473; public static Neo4jServer createServer() { return new Neo4jServer(HOST, PORT, new ImpermanentGraphDatabase()); }
323334353637383940
shutdown(); } private static Neo4jServer startServer() throws IOException { Neo4jServer server = ServerHelper.createServer(); server.start(); return server; }