private static WrappingNeoServerBootstrapper srv;
public static void main(String[] args) throws Exception {
if (startWrappingServer) {
myDb = new ImpermanentGraphDatabase();
EmbeddedServerConfigurator config = new EmbeddedServerConfigurator(
myDb);
config.configuration().setProperty(
Configurator.WEBSERVER_PORT_PROPERTY_KEY, 7575);
config.configuration().setProperty(
Configurator.REST_API_PATH_PROPERTY_KEY,
SERVER_API_PATH_PROP);
srv = new WrappingNeoServerBootstrapper(myDb, config);
srv.start();
}