Hi Michael,
It is http://maven.springframework.org/snapshot/.
You can immediately check by opening...
Type: Posts; User: hsherlock; Keyword(s):
Hi Michael,
It is http://maven.springframework.org/snapshot/.
You can immediately check by opening...
Hi,
my project just stopped building and I found that all .jar files in 2.1.0.BUILD-20120820.083406-39 are actually .pom files with .jar file extensions.
Cheers,
Hi Lasse,
Created the issue: https://jira.springsource.org/browse/DATAGRAPH-279
Cheers,
Hi,
I found a way to workaround this issue by overriding the equals() and filtering out any non-NodeBacked objects:
@Override
public boolean equals(Object obj)
{
if (obj==null) return...
Hi,
Today I've noted something which looks like a bug.
When attempting .equals() on instance of @NodeEntity annotated class against instance of some non-@NodeEntity annotated class an exception...
Hi,
I found the reason in my particular case: the package whose name was put in context:component-scan in Spring's applicationContext.xml didn't exist.
Mistakes do happen, but in my opinion...
Hi,
Any news regarding this problem?
Today I found this thread and it looks I am having the same problem...
Found similar issue: http://forum.springsource.org/showthread.php?126304-SDN-2-1-0-RC1-NullPointerException-in-DelegatingGraphDatabase-getIndex()
Tried switching to Spring Core versions...
Strangely enough, now plain Java app which I run outside of the Tomcat container also started to produce same exception.
Will be grateful for any hint...
Hi,
I have a problem getting Spring Data Neo4j-based web application running, constantly getting an exception seen in the log output below:
Caused by: java.lang.NullPointerException
at...
Wow!
Noted that STS 2.9.2.RELEASE shows build problem only for org.neo4j.cineasts.domain.Person class, while org.neo4j.cineasts.domain.Movie which is very similar is actually ok. After placing few...
Hi,
same here. I am struggling and stuck in setting up a workable Spring Data Neo4j Aspects-based Eclipse development environment.
Will be grateful for any hint or direction!
My environment...
Hi Lasse,
Tried as you suggested and renamed the method argument as below
public Iterable<POJO> getRelationshipsByType(@Param("relType") String relType)
No success here - same result - empty...
Hi,
As discussed in previous related thread (http://forum.springsource.org/showthread.php?128497-How-to-list-relationships-by-type-in-a-Cypher-Query-annotated-method)
I have the following...
Ok, now I see - it is not allowed to insert parameters like MATCH ....[rel:{NOT_ALLOWED}]...
Tried to slightly modify the query according the example from "Good Relationships" book
.... WHERE...
Hi Lasse,
Unfortunately I don't think it could be demonstrated in the Neo4j console because I didn't found any way to pass query-external parameters in format {...}. Actually, the query is ok,...
Hi,
I think I found a problem - it looks that Cypher cannot substitute relationship type in the MATCH clause with external parameters passed in format {param} like the following:
START...
Hi,
Is it possible to list related items of an item filtered by relationship type like below?
@NodeEntity
public class POJO
{
....