我使用 Titan 0.4.2 和 cassandra 2.0.7 作为存储后端。我已经使用 rexter-server 2.4.0 在泰坦中插入顶点。但是,当我尝试使用 rexter 客户端更新顶点属性时,出现空指针异常。
RexsterClient client = RexsterClientFactory.open("localhost", "titangraph");
client.execute("g.getVertex(8).setProperty('name','William')");
上面的代码抛出空指针异常。但是脚本 g.getVertex(8).setProperty('name','William') 在 gremlin 控制台中运行得非常好
如何使用 rexster rexpro 更新 Titan 顶点属性?