我试图更熟悉java-rest-binding(https://github.com/neo4j/java-rest-binding)。
我的主要问题是GraphDatabaseService支持哪些操作。
例如,我在此处读到GlobalGraphOperation
不受支持,但测试使用它们。我有最终版本(2.0.1)。在这方面,我想知道
GraphDatabaseService gds = new RestGraphDatabase("http://localhost:7474/db/data");
和
RestAPI restAPI = new RestAPIFacade("http://localhost:7474/db/data");`
或者连接到neo4j服务器的方式相同。
答案 0 :(得分:1)
java-rest-binding是对线路上的REST-Operations的一个片状抽象。除非你有充分的理由使用它,否则我不会使用它。
您想要解决的实际用例是什么?