ORM of nebula-java
一个 nebula-java 的 ORM 框架,graph ocean 意为图海洋,
与 Nebula Graph 的星云相匹配,星辰大海。
详细见 graph-ocean 设计文档:https://github.com/Anyzm/graph-ocean/blob/main/graph-ocean-design.md
nebula 2.x的maven项目引入坐标:
<dependency>
<groupId>io.github.anyzm</groupId>
<artifactId>graph-ocean</artifactId>
<version>2.0.0-rc1</version>
</dependency>
nebula 3.x的maven项目引入坐标:
<dependency>
<groupId>io.github.anyzm</groupId>
<artifactId>graph-ocean</artifactId>
<version>3.0.1</version>
</dependency>
1.0.0支持的是nebula-java2.0.0-rc1,这个版本的java客户端亲测可以支持nebula 2.5.0,猜想应该也能支持nebula2系列的各服务端版本(未一一验证,大家可以先在测试环境验证)。
另外如果nebula-java客户端的连接池API没有改动的话,也可以在pom中剔除nebula-java,然后引入自己需要的客户端版本。
NebulaGraphMapper nebulaGraphMapper = nebulaGraphMapper(nebulaPoolSessionManager(
nebulaPool(nebulaPoolConfig())));
User user = new User("UR123", "张三");
//保存顶点
int i = nebulaGraphMapper.saveVertexEntities(Lists.newArrayList(user));
//查询顶点
List<User> users = nebulaGraphMapper.fetchVertexTag(User.class, "UR123");
//保存边和查询边类似
Follow follow = new Follow("UR123", "UR234", 1);
//保存边
nebulaGraphMapper.saveEdgeEntities(Lists.newArrayList(follow));
//查询出边
List<Follow> follows = nebulaGraphMapper.goOutEdge(Follow.class, "UR123");
//查询反向边
List<Follow> fans = nebulaGraphMapper.goReverseEdge(Follow.class, "UR123");
//查询API
VertexQuery queryUserName = NebulaVertexQuery.build().fetchPropOn(User.class, "UR123")
.yield(User.class,"userName");
QueryResult rows = nebulaGraphMapper.executeQuery(queryUserName);
System.out.println(rows);
拥有丰富的 API,详情请见测试用例:com.github.anyzm.graph.ocean.GraphOceanExample
也可以查看更详细一点的使用文档:https://github.com/Anyzm/graph-ocean/blob/main/detailed_introduction.md
由于本框架目前几乎是由一人开发完成,所以难免有些不完善或者不优雅的地方,望大家谅解。
初期最佳实践是下载源码自己在本地根据自己的需要修改,同时也希望能有更多的人能够参与其中一起开发完善这个框架。