Re: [Neo4j] [spring-neo] strict class persistence vs. projections

2011-01-20 Thread Michael Hunger
So what I've achieved so far is this: @NodeEntity public class Group { private String name; public String getName() {return name;} public void setName(String name) {this.name = name;} } @NodeEntity public class Named { private String name; public String getName() {return name;} }

Re: [Neo4j] [spring-neo] strict class persistence vs. projections

2011-01-19 Thread Peter Neubauer
In some way, something similar is happening already in Neo4j Spatial. There is the domain dataset that e.g. could be created using the JRuby or Spring Data bindings, using the one-node-per-object approach. For the exposure of Polygons, Layers, LinesStrings and Points onto a GIS view, there are the