Search:

Type: Posts; User: szarnyasg; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    411

    Thanks, I think I'll use manual mapping supported...

    Thanks, I think I'll use manual mapping supported by some code generation (Xtend2). Gabor
  2. Replies
    2
    Views
    411

    Mapping EMF objects to Neo4j

    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...
  3. Replies
    19
    Views
    1,991

    I think I found the answer for my questions. ...

    I think I found the answer for my questions.

    1) Use the GraphDatabaseAPI's beginTx() method:


    try {
    GraphDatabaseAPI graphDatabaseAPI = new EmbeddedGraphDatabase("testdb");
    ...
  4. Replies
    19
    Views
    1,991

    Thanks! The following is working fine: try { ...

    Thanks! The following is working fine:

    try {
    GraphDatabaseAPI graphDatabaseService = new EmbeddedGraphDatabase("testdb");
    GraphDatabase graphDatabase = new...
  5. Replies
    19
    Views
    1,991

    Thanks! The build ran successfully with "mvn...

    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 = ...
  6. Replies
    19
    Views
    1,991

    Can you please give me a hint about which...

    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!
  7. Replies
    19
    Views
    1,991

    Thanks for the quick answer! It worked with...

    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...
  8. Replies
    19
    Views
    1,991

    Hello! I ran into a similar problem. My...

    Hello!

    I ran into a similar problem.

    My Main class is:

    package neo4jSpringDataTestPackage;

    import org.neo4j.graphdb.GraphDatabaseService;
    import org.neo4j.graphdb.Transaction;
Results 1 to 8 of 8