Thanks, I think I'll use manual mapping supported by some code generation (Xtend2). Gabor
Type: Posts; User: szarnyasg; Keyword(s):
Thanks, I think I'll use manual mapping supported by some code generation (Xtend2). Gabor
As part of a university research project, we want to try Neo4j to store large instance models built in the Eclipse Modeling Framework as Neo4j graphs, query the graph and retrieve the result as...
I think I found the answer for my questions.
1) Use the GraphDatabaseAPI's beginTx() method:
try {
GraphDatabaseAPI graphDatabaseAPI = new EmbeddedGraphDatabase("testdb");
...
Thanks! The following is working fine:
try {
GraphDatabaseAPI graphDatabaseService = new EmbeddedGraphDatabase("testdb");
GraphDatabase graphDatabase = new...
Thanks! The build ran successfully with "mvn clean install". I created the following code in the spring-data-neo4j-hello-worlds project:
try {
GraphDatabaseService graphDatabaseService = ...
Can you please give me a hint about which plugin:goal to use to build the https://github.com/SpringSource/spring-data-neo4j project with mvn? Thanks!
Thanks for the quick answer! It worked with dependency injection (I based the code on the cineast project).
Thanks to yesterdays release (http://www.springsource.org/node/3547), the instantiation...
Hello!
I ran into a similar problem.
My Main class is:
package neo4jSpringDataTestPackage;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Transaction;