Tagged Questions

4
votes
1answer
216 views

Neo4j in the cloud

Is anyone aware of cloud services (PaaS) which could be suitable for a spring/neo4j application. Anything to look out for?
2
votes
1answer
221 views

Paging with Spring Data Graph/Neo4j

Is it possible to fetch Page results when using Spring Data Graph (Neo4J) as the data store? The findAll(Pageable) seems to be the only Pageable query availalble when using the GraphRepository. What ...
2
votes
2answers
780 views

Populating a spring bean using a constructor-arg field

How can i inject a properties file containing a Map to be used as additional constructor arg using the field. With a Map being loaded from a properties file the bean is currently setup using: ...
2
votes
1answer
296 views

Spring Configuration Settings For Neo4j

Hi I would like to integrate the "neo4j_config.props" file from http://wiki.neo4j.org/content/Configuration_Settings#Optimizing_for_traversals_example into the : a neo4j spring app, the ...
1
vote
2answers
88 views

Fetch annotation in SDG 2.0, fetching strategy questions

Hi all patient developers using spring data graph. Since there is so less documentation and pretty poor test coverage it is sometimes very difficult to understand what is the expected behavior of the ...
1
vote
1answer
107 views

How to persist relationships between Neo4J NodeEntitys in Spring Data Graph without calling persist twice

The test below fails if I remove the first persist(). Why do I need to persist the NodeEntity in order for the Set to be instantiated? Is there some better way to do this? I don't want to have to ...
1
vote
1answer
150 views

Cypher query to get nodes with given property values

Being new to Cypher Queries on Spring Data Graph, this may be quite trivial... I am looking for what would be the Cypher query to fetch all nodes that have a given value for a couple of properties. ...
1
vote
1answer
179 views

Neo4j eager/lazy loading with Spring data

I'm investigating Neo4j and have a question with regards to object eager/lazy loading. Lets say I have class Trolley with has Set<Item> (with getters/setters). If I do the following: Trolley t ...
0
votes
0answers
35 views

Integration (maven) of Spring Data Neo4j in Dynamic Web Project using Jersey and Tomcat

I´m getting a little bit lost in my own (maven enabled) dynamic WEB - Project. The project works fine, I´ve got a RESTful WebService (Jersey) running and I´m able to consume it. ... my next step was ...
0
votes
1answer
42 views

Correct way to get transactions using Spring Data Neo4j's simple object/graph mapping?

I'm using the simple object/graph mapping in Spring Data Neo4j 2.0, where I perform persistence operations using the Spring Data repository framework. I'm working with the repositories rather than ...
0
votes
1answer
123 views

use WrappingNeoServerBootstrapper with spring-data-neo4j

Is it possible to use the WrappingNeoServerBootstrapper with spring-data-neo4j? When using an embedded database without spring-data-neo4j, one can use a WrappingNeoServerBootstrapper to enable the ...
0
votes
1answer
79 views

Spring framework version with Spring Data Neo4j

Is there a version matrix for Spring framework core with Spring Data Neo4j? I am looking for the (least) version of Spring framework core that is compatible (should be used) with Spring Data Neo4j ...
0
votes
1answer
28 views

SpringDataGraph findByProperty not working with Neo4J

When I run the code below, a new User with the expected properties is created. (I confirm with Neoclipse after running the test). However, findByPropertyValue fails to retrieve the user. It just ...
0
votes
2answers
188 views

Where can I find Spring Graph DB Tutorial Step-by-Step?

I'm new in Spring and I'm using it with Graph ORM module, I have searched around internet but just found a little code somewhere, there is no full tutorial guide me step by step from configuration to ...
0
votes
1answer
663 views

Spring-data cross store entity management

I want to use Postgres, MongoDB and Neo4j together in my application. I was able to configure them all, however now each of my POJOs is backed my graphNode as well as document by aspectJ. Is there ...
0
votes
2answers
244 views

@RelatedTo(elementClass = Concept.class) RelatedTo.elementClass must be a class liter

Reading this documentation, I tryed to apply to my code in this way: Triple @Entity @Table(name = "triple") @NodeEntity public class TripleDBMoldelNeoImpl implements TripleDBModel{ protected ...
-1
votes
2answers
107 views

Harvesting Keywords from the internet

Can you suggest some possible sources to harvest related keywords. One suggestion is to use google and enter in a query and get back and response page and sift through the HTML to get some related ...