Package org.springframework.data.neo4j.rest

Examples of org.springframework.data.neo4j.rest.SpringCypherRestGraphDatabase


    @Before
    public void setUp() throws Exception {
        cleanDb();
//        restGraphDatabase = new SpringRestGraphDatabase(SERVER_ROOT_URI);
        restGraphDatabase = new SpringCypherRestGraphDatabase(SERVER_ROOT_URI);
        refNode = createNode();
    }
View Full Code Here


        bootstrapper.start();
        neoServer = bootstrapper.getServer();
    }

    public GraphDatabase createGraphDatabase() throws URISyntaxException {
        return new SpringCypherRestGraphDatabase(SERVER_ROOT_URI);
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.neo4j.rest.SpringCypherRestGraphDatabase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.