Tag Archives: Spring Data

Enabling Neo4j Web Admin Tool on the Embedded Server using Spring Data

As you’ve probably gathered from Jan’s recent blog posts we’re currently working on a project which makes use of Spring Data and Neo4j. For the time being we’re running the embedded version of Neo4j, which by default doesn’t have the … Read more

Cross store experiments

Just a quick post about what I’m thinking of hacking together: cross-store persistence between the Spring Data providers. What I would like to have is this: @NodeEntity case class User @PersistenceConstructor() (@GraphId id: java.lang.Long, @Indexed username: String) { @RelatedDocument var … Read more

Spring Data Neo4j and MongoDB

Following from the last post on Scala and Spring Data with Neo4j, where I showed how to configure Spring Data to persist Neo4j instances. I showed code using Scala-ified Java code; in other words, the persistent class was defined as:

Neo4j Spring Data & Scala

Spring Data is an excellent tool that generates implementations of repositories using the naming conventions similar to the convention used in the dynamic language runtimes such as Grails and Ruby on Rails. In this post, I am going to show … Read more