2

我已使用链接使用 AWS CloudFormation 模板在 Amazon EC2 上使用 Gremlin 服务器为 Titan 创建 DynamoDB 存储后端。这工作得很好,我能够得到输出。

我想使用 java 连接和访问上面创建的 Titan db,并从我的 java 程序中执行查询。这样做需要帮助。

我可以使用下面的 nodejs 代码来做到这一点:

 var Gremlin = require('gremlin');

// Will open a WebSocket to ws://localhost:8182 by default
const client = Gremlin.createClient();

console.log(JSON.stringify(client));


client.execute('g.addV("FirstVertex","Value")', (err, results) => {
  if (!err) {
console.log(results); // notice how results is *always* an array
  }
 console.log(err);
});

client.execute('g.V()', (err, results) => {
if (!err) {
console.log(results); // notice how results is *always* an array
}
});

如何使用 java websocket 做同样的事情?

4

1 回答 1

1

Apache TinkerPop中有关于使用 Java 驱动程序连接到 Gremlin 服务器的文档。您还可以在此处查看使用 Titan 的示例https://github.com/pluradj/titan-tp3-driver-example

于 2017-04-10T14:59:24.923 回答