Package org.springframework.data.neo4j.repository

Examples of org.springframework.data.neo4j.repository.GraphRepositoryFactory


  protected T create(CreationalContext<T> creationalContext, Class<T> repositoryType, Object customImplementation) {

    Neo4jMappingContext neo4jMapCtx = new Neo4jMappingContext();
    Neo4jTemplate neo4jTemplate = new Neo4jTemplate(getDependencyInstance(graphDatabase, GraphDatabase.class));

    GraphRepositoryFactory factory = new GraphRepositoryFactory(neo4jTemplate, neo4jMapCtx);
    return factory.getRepository(repositoryType, customImplementation);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.neo4j.repository.GraphRepositoryFactory

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.