I'm starting to learn the neo4j DB. My test code is below:
@Test
public void persistedMovieShouldBeRetrievableFromGraphDb() {
GraphDatabaseService graphDB = new EmbeddedGraphDatabase("data/graph.db");
registerShutdownHook(graphDB);
Transaction tx = graphDB.beginTx();
try{
Neo4jTemplate template = new Neo4jTemplate(graphDB);
Movie forrestGump = template.save(new Movie("Forrest Gump", 1994));
Movie retrievedMovie = template.findOne(forrestGump.getId(), Movie.class);
assertEquals("Retrieved Movie matched persisted one", forrestGump, retrievedMovie);
assertEquals("retrieved movie title matches", "Forrest Gump", retrievedMovie.getTitle());
}
finally{
tx.finish();
}
}
However, it always gives an exception:
java.lang.NoSuchMethodError: org.neo4j.kernel.impl.transaction.SpringTransactionManager.<init>(Lorg/neo4j/kernel/GraphDatabaseAPI;)V
pom.xmlyou have neo4j declared and spring-data-neo4j, correct? – Nicholas Jul 11 '12 at 20:03