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)?
WrappingNeoServerBootstrapperfor the time being. Time will tell what happens to it.