Search:

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

Search: Search took 0.02 seconds.

  1. Hi Michael, It is...

    Hi Michael,

    It is http://maven.springframework.org/snapshot/.

    You can immediately check by opening...
  2. Broken maven build 2.1.0.BUILD-20120820.083406-39 - jars are actually poms.

    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,
  3. Hi Lasse, Created the issue:...

    Hi Lasse,

    Created the issue: https://jira.springsource.org/browse/DATAGRAPH-279

    Cheers,
  4. Hi, I found a way to workaround this issue by...

    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...
  5. NodeBacked.equals("some string here") throws Exception - bug?

    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...
  6. Hi, I found the reason in my particular case:...

    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...
  7. Hi, Any news regarding this problem? Today I...

    Hi,

    Any news regarding this problem?
    Today I found this thread and it looks I am having the same problem...
  8. Found similar issue:...

    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...
  9. Strangely enough, now plain Java app which I run...

    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...
  10. Cannot run Spring Data Neo4j-based WAR - NullPointerException

    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...
  11. Wow! Noted that STS 2.9.2.RELEASE shows build...

    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...
  12. Hi, same here. I am struggling and stuck in...

    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...
  13. Hi Lasse, Tried as you suggested and renamed...

    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...
  14. Cypher query in a @Query annotated method is not invoked?!

    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...
  15. Ok, now I see - it is not allowed to insert...

    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...
  16. Hi Lasse, Unfortunately I don't think it could...

    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,...
  17. Are parameters supported in Cypher MATCH clause like -[:{type}]->?

    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...
  18. How to list relationships by type in a Cypher @Query annotated method?

    Hi,

    Is it possible to list related items of an item filtered by relationship type like below?

    @NodeEntity
    public class POJO
    {

    ....
Results 1 to 18 of 18