Neo4Django - 无法创建节点 - 抛出StatusException

时间:2014-06-02 11:49:07

标签: django neo4django

无法解决问题,或者无法在任何邮件列表中找到与此相关的任何内容。

型号:

class Person(neomodels.NodeModel):
    name = neomodels.StringProperty("Name")
    user_id = neomodels.StringProperty("UserID")
    registered_at = neomodels.DateTimeProperty("Registered At")

Django的壳:

from models import Person
p = Person.objects.create(name="Metin Emenullahi", user_id="sdg'd;f", registered_at="05/01/2014");

错误:

StatusException: Code [400]: Bad Request. Bad request syntax or unsupported method.
Invalid data sent: javax.script.ScriptException: groovy.lang.MissingMethodException: No signature of method: groovy.lang.MissingMethodException.setMaxBufferSize() is applicable for argument types: () values: []

完整追溯是here

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

经过数小时可怕的解决问题的过程和痛苦的神经系统后,我终于找到了为什么这个东西不起作用:

这是因为neo4django和neo4j之间的版本兼容性。 neo4django已经针对neo4j的1.8.2-1.9.4版本进行了测试,但我使用的是2.1.1版本。我将其更改为1.8.3(从neo4j网站上可用的版本范围),它就像一个魅力。