Spring Data Neo4j enables POJO based development for the Graph Database Neo4j.
0
votes
0answers
9 views
What is the proper configuration for Spring Data Neo4j and PlayFramework 2.1.1?
Here is a PlayFramework with Spring Data Neo4j skeleton app that I've built:
https://github.com/tomasmuller/playframework-neo4j-template
During the first play run everything works fine. ...
0
votes
0answers
44 views
No qualifying bean of type [javax.persistence.EntityManagerFactory] is defined
Trying to get Spring Data REST and Spring Data Neo4j working.
Here is the source: https://github.com/tony-landis/spring-data-neo4j-rest
Running on Jetty, which starts up ok but on any request this ...
0
votes
1answer
20 views
Neo4j embedded with high availability
I used Spring Data Neo4j Embedded recently for one of the POC. It works blazing fast on single machine. Before going to production, I wanted to separate database from the application server. I ...
0
votes
1answer
26 views
Neo4J and timestamps
I need information about node's creation & last modification dates...
Is there a way to automatically handle created and updated properties for a node?
Hibernate offers @Version for updated ...
0
votes
0answers
30 views
Map different relationship types to one collection
I am trying to map ontology terms to a Neo4j data-structure.
To be precise I have a Term class and 2 types of relationships (is_a and part_of).
I have following classes:
Term class:
@NodeEntity
...
0
votes
0answers
14 views
spring-data-neo4j-rest RuntimeException when adding to index
with
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j-rest</artifactId>
<version>2.2.1.RELEASE</version>
...
0
votes
1answer
36 views
spring-data-neo4j not substituting parameters into @Query
I have tested my query in the Neo4j web interface, and now I want to add it to my Java program. I have tried this (in a @NodeEntity class called Track):
@Query("START n=({self}) MATCH ...
1
vote
1answer
45 views
Cypher-QueryDSL: 'My “Q” classes cannot be resolved' compile error (e.g. QPerson)
I'm trying to learn how to use Neo4j cypher with QueryDSL. So I downloaded the sources from the neo4j/cypher-dsl GitHub repository, and imported the project into eclipse as a Maven Project. However, ...
1
vote
0answers
59 views
Spring Data Neo4j - Adding custom analyzers to lucene indexes (PerFieldAnalyzerWrapper)
Is it possible to customize lucene indexes in spring-data-neo4j, such that my indexes will be using custom analyzers? In particular, i want to use the PerFieldAnalyzerWrapper analyzer, so i will be ...
0
votes
1answer
29 views
Spring Data Neo4j in combination with Spring-Social and Spring-Security
I am in an early stage of a small Spring-based project which utilizes Spring Data Neo4j with an embedded database (but possibly could use a server instance in a later development , too).
My data ...
0
votes
1answer
69 views
Spring Data Neo4j - Combining Fulltext and Simple Indexes in the same Cypher query
I wonder how can i build a Cypher query that will combine Fulltext and Simple indexes using spring data neo4j. Consider the following node entity:
@NodeEntity
public class SomeObject {
public ...
0
votes
1answer
57 views
Spring Data Neo4j - Getting an exception when running a cypher query
I'm getting a strange exception when trying to run a simple cypher query. First i'll introduce my code, and then i'll show what cause the exception. So i have the following classes:
A simple class to ...
0
votes
1answer
59 views
Spring Data Neo4j - Exception when trying to use @Transactional annotation
I'm quite new with Spring Data and Neo4j, and there is something i don't understand about using the @Transactional annotation. It seems that i must declare an empty constructor for a class which i ...
0
votes
2answers
59 views
Spring Data Neo4j - Indexing and Inheritance
Lets say i have the following data model:
public class A {
@Indexed(indexType = IndexType.FULLTEXT, indexName = "property1")
String property1;
}
public class B extends A {
...
0
votes
1answer
33 views
Spring Data Neo4j - findAll() doesn't return sorted results
I'm trying to use findAll() of the GraphRepository using PageRequest with sorting properties, but for some reson my data is not returned in a sorted way. Here is my code:
public class Playground {
...
0
votes
2answers
46 views
Node Entity needs to be found again after adding relationships (neo4j/java/spring)
I've used the @NodeEntity annotation for a class topic. In Topic there is the following: (For sake of brevity, I've narrowed the error down, so I'm only writing up the relevant parts of the code.)
...
0
votes
0answers
57 views
On moving from Neo4j Embedded to Server mode, updating a property throws exception during addToIndex
We were using Neo4J (Embedded mode) until now (SDN 2.2.0-RELEASE).
As we wanted to move to server mode, we made the changes in our test environment (dependency on spring-data-neo4j-rest and the below ...
0
votes
0answers
18 views
Spring Data Neo4j - how to I use more than one neo4j database in a single Spring Data Neo4j application?
In Spring Data Neo4j, I have 2 Repositories...
interface MyRepository1 extends GraphRepository...
interface MyRepository2 extends GraphRepository...
MyRepository1 needs to be associated with a ...
0
votes
1answer
39 views
Spring Data Neo4j template.fetch() leading to OutOfMemory?
Is there a theoretical possibility that using template.fetch() could lead to OutOfMemoryException? Let's say for example that there is a loop that loops 100 times and each time template.fetch() is ...
0
votes
0answers
57 views
Cannot find parent: net.java:jvnet-parent for project: com.sun.jersey:jersey-project:pom:1.9
My project invloves of spring-data-neo4j,when runnging mvn clean install,
there is a maven build error.
[ERROR] BUILD ERROR
[INFO] ...
0
votes
0answers
54 views
Issue with collection as parameter to a Cypher query with IN keyword
I'm facing a strange issue trying to upgrade Spring Data Neo4j from 2.1.0.RELEASE to 2.2.0.RELEASE. The problem is that I get an exception when trying to execute a query with an IN keyword, whereas ...
1
vote
0answers
45 views
lucene index lookup query slower than where clause based query for more data
I am facing issues where lucene index lookup in start clause is slower than where clause.
e.g
i am running neo4j 1.9.M05 on a mac with java process having 4 gb of heap with 1.5 milllion nodes and 5 ...
0
votes
0answers
38 views
SDN 2.1.0/neo4j 1.8: java.lang.IllegalArgumentException: Cannot obtain single field value for field 'schoolRef'
I am able add and save multiple SchoolRef, but am getting the error after retrieving the (ancestor and eagerly fetching the) Education object and then attempting to add another SchoolRef. This was ...
0
votes
0answers
39 views
Result.to(NodeEntity.class): stack overflow error
while trying to retrieve my nodes back to my domain objects I'm getting this strange error:
Exception in thread "main" java.lang.StackOverflowError
at ...
0
votes
1answer
100 views
Spring Data Neo4j: using the Neo4j server with an embedded: JAR packaging
I was finally able to create a server instance within my java app that uses the embedded database as explained here. This works properly while I'm running it from Eclipse, but this is not actually my ...
1
vote
1answer
125 views
Spring Data Neo4j: Using the server with an embedded
I'm trying to configure my application context in order to be able to use the Neo4j server with an embedded graph in my app without much success. I'm using Spring Data at the same time (both Mongo and ...
0
votes
1answer
28 views
How to get exact node based on some property
I am creating some node and relationship as below, please ignore variables name convention:-
create e1={name:'sayeed', eId:1},
p1={pId:101, is_flag1:'Y', is_flag2:'N', is_flag3:'Y'},
...
0
votes
1answer
44 views
Neo4j: lock store
I'm developing a project which is based on Spring Data Neo4j using the repositories approach. The issue is that I can't read and write the graph at the same time (which is required in my app), since I ...
0
votes
1answer
54 views
Spring Data Neo4j: why save method takes so long?
I'm using Spring Data Neo4j in my project and I've noticed it takes too much time while saving my node entity classes (>300ms/node), which actually are pretty simple (they only contain one property, a ...
0
votes
0answers
21 views
How can we make exact index as case insensitive in springdata neo4j
with neo4j core API we can create an exact index and also make it as case_insensitive like below Here’s an example of how to create an exact index which is case-insensitive:
Index index = ...
0
votes
1answer
73 views
Spring security - different SALTs at user creation and login time
I am facing again the same problem with Spring Security: "password does not match stored value".
I import 4 accounts in my graph (I'm using SpringData/Neo4J) with my custom GraphPopulator class and ...
1
vote
1answer
85 views
How to implement a read-only property with Spring Data?
This should be a simple thing to do! But I've been unable to find an answer so far.
Either I'm missing something obvious, or else I'm missing something obvious...
I have a class, say Person. With ...
0
votes
0answers
32 views
spring-data-neo4j 2.2.0 has java.security.AccessControlException in Google App Engine
GAE is throwing the following error with spring-data-neo4j 2.2.0. Is there a way to disable threads in spring-data-neo4j?
Caused by: java.security.AccessControlException: access denied ...
0
votes
1answer
148 views
Spring / @Transactional with AspectJ is totally ignored
I use Spring-Data Neo4j 2.2.0-RELEASE. (my following issue would be applicable to any other kind of entity mapping, why not JPA)
In my project, I have a public method annotated with @Transactional ...
0
votes
1answer
109 views
Performance with @MapResult in spring-data-neo4j
I am using spring-data-neo4j to access standalone Neo4J server via REST api. Severe performance issues are observed while retrieving objects via spring repository using @MapResult to transform the ...
1
vote
2answers
78 views
Spring data neo4j's advanced mapping vs simple mapping
I understand there are many advantages in using Spring data neo4j's advanced mapping rather than the simple mapping.
My question is what are the cons of using advanced mapping over the simple ...
0
votes
2answers
70 views
Multiple neo4j instances configuration
I'm wondering how to set up two different neo4j server instances when using Spring Data, e.g. one for test and the other for production purposes. I have my production server instance running on ...
0
votes
0answers
57 views
Standalone Spring-data-neo4j 2.2.0.RELEASE hangs instead of exits
I am developing a standalone app connecting to a neo4j server. I'm using Spring-data-neo4j 2.2.0.RELEASE and neo4j 1.8.1. Initially I hit the CGLIB error and based on another thread, rolled back to ...
0
votes
2answers
93 views
Implementing Lazy Loading in Spring Data Neo4j
Spring Data Neo4j doesn't have lazy loading.
I want lazy loading in my project anyway. After all, what's really the point of having a getter if I can't rely on it to actually get what I want it to ...
1
vote
1answer
61 views
Map cypher query result to domain object
I just started to use Neo4j with Spring Data and I'm not able to recover graph objects and convert them back to domain objects. I must say I have no previous experience in that kind of databases.
In ...
0
votes
0answers
11 views
How to pass a custom analyzer to @Indexed annotation?
Neo4J lets us provide a custom Analyzer when creating indexes.
How can we achieve this with Spring-Data-Neo4j? Since @Indexed doesn't have this property, what are other options?
2
votes
1answer
124 views
Spring/Neo4J - Is impermanentGraphDatabase compatible with Transaction Annotation?
Firstly, I precise that I use Spring Data for Neo4J 2.2.0-release and Scala 2.10.
I'm building some tests in order to test my application services.
Here my different files in call order (I precise ...
0
votes
3answers
197 views
Integrating mongodb with neo4j, is there any API that will link them?
I am working on a recommendation engine. The user data is collected (Their friendship, locations, likes,education,...) and is already stored in mongodb. I need to recommend relevant products to these ...
0
votes
2answers
186 views
How can I update node or node entity in Spring data neo4j?
In Spring data neo44 we have just repository.save(entity), but for example when my UserEntity's property(email) changed, i dont know how to update the same.
I tried also with neo4j template, but save ...
0
votes
1answer
141 views
How to convert org.neo4j.rest.graphdb.entity.RestNode to Spring Data Neo4j Node Entity
I'm using Spring Data for Neo4j to access Neo4j graph. I have a UserRepository with an annotated query as below:
package com.abc.graph.repository;
import java.util.List;
import java.util.Map;
...
0
votes
1answer
62 views
How to enable Neo4j REST Streaming with spring-data-neo4j
I am using spring-data-neo4j to access the Neo4j database. I want to enable REST streaming for improving the performance of my Neo4j interactions.
Can anyone please guide me on how to leverage ...
0
votes
0answers
71 views
How to retrive query results with Neo4jtemplate
Using Neo4jTemplate i executed the query with params...
Result> result = template.query(query, params);
return result;
But then it gave the following error...HTTP Status 500 - Request processing ...
1
vote
1answer
52 views
spring data wth ne04j error…error while retrieving paths
I was using spring data with neo4j.
I used @Quory annotation to plce the query in the repository,the query was as follows
@Query(value = "START me=node({0}), friend=node({1}) "
...
0
votes
1answer
81 views
java.lang.NoClassDefFoundError: org/neo4j/cypherdsl/grammar/Execute
I have a project using spring mvc, and neo4j. After upgrading the dependencies, I am now getting the error "java.lang.NoClassDefFoundError: org/neo4j/cypherdsl/grammar/Execute". I want to see if I'm ...
0
votes
0answers
153 views
Spring Neo4j with aspectj, transactions configuration
I am working with Neo4j in embedded mode, spring data and aspectj mapping.
Relevant POM slices:
<dependency>
<groupId>org.springframework.data</groupId>
...




