0

In Neo4j 1.9.2, I used (code #1) :

EmbeddedNeo4j.graphDb = new GraphDatabaseFactory()
.newEmbeddedDatabaseBuilder("path")
.loadPropertiesFromFile( "configpath" )
.newGraphDatabase();
registerShutdownHook( graphDb );

to launch Embedded server. Then I used, to get access to the web interface (code #2):

WrappingNeoServerBootstrapper srv;
srv = new WrappingNeoServerBootstrapper( (GraphDatabaseAPI) graphDb, (ServerConfigurator)config);
srv.start();

Since WrappingNeoServerBootstrapper is deprecated in 1.9.5, is there still a way to get access to the web interface (code #1 is ok, but no web interface available)?

2
  • Can you use neo4j as server and write plugin for it? Commented Dec 15, 2013 at 8:42
  • You can still use WrappingNeoServerBootstrapper for the time being. Time will tell what happens to it. Commented Dec 16, 2013 at 1:42

1 Answer 1

1

I only know the non-programmatical-way: Download the Neo4j community edition (Neo4j), install, start the program, and point it to your db. You can then access the web interface via localhost:7474.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.