sorry for reposting, I didn't find my old post, thought it was gone!
Am Freitag, 9. März 2012 10:35:07 UTC+1 schrieb Tobias:
I am trying to enable acces to the webinterface from remote IP's.
According to the API I need to use org.neo4j.server.configuration.Configurator. In order to enable remote IP's to access the webinterface, I have to create an instance of Configurator and then call the method configuration().
@code EmbeddedServerConfigurator conf = new EmbeddedServerConfigurator( myDb );
conf.configuration()
.addProperty( WEBSERVER_PORT_PROPERTY_KEY, 8080 );
What is the best way to do this in a spring context file? Is there any possibility not to do the configuration in java code?