Package org.springframework.data.neo4j.aspects.support.relationship

Examples of org.springframework.data.neo4j.aspects.support.relationship.Neo4jRelationshipBacking


@Configuration
public class Neo4jAspectConfiguration extends Neo4jConfiguration
{
    @Bean
    public Neo4jRelationshipBacking neo4jRelationshipBacking() throws Exception {
        Neo4jRelationshipBacking aspect = Neo4jRelationshipBacking.aspectOf();
        aspect.setTemplate(neo4jTemplate());
        aspect.setRelationshipEntityStateFactory(relationshipEntityStateFactory());
        return aspect;
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.neo4j.aspects.support.relationship.Neo4jRelationshipBacking

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.