How to import data to a remote neo4j server? -
i have developed simple application performs crud operations on local embedded neo4j server.i have initialized server this.
public static final strin db_path=system.getproperty("user.dir")+"/neo4j/data/graph.db"; public static final graphdatabaseservice ourgraphdb = new graphdatabasefactory().newembeddeddatabase(db_path);
now want run crud operations in remote server. firstlly want check if can import data in local server (localhost:7474/db/data).
how it?
you can write server extension has direct access embedded database of neo4j server. expose domain level rest endpoints client applications.
see: http://docs.neo4j.org/chunked/stable/server-unmanaged-extensions.html
Comments
Post a Comment