我在Spring Data Orientdb项目上看到了这些注释,我想知道是否可以在 java pojo 对象上使用它来创建顶点和关系。
场景将是这样的:
@Vertex
public class User{
@Edge
public class Follow {
OrientGraph orientGraph = factory.getTx();
User george = new User();
User richard = new User();
Follow follow = new Follow();
orientGraph.addEdge(null, george, richard, follow);
它不起作用,因为 addEdge 方法需要 2 个 Vertex 类和 Edge 类。也许注释不适合这个。
我使用 orientdb Studio,创建从 V(Vertex) 和 E(Edge) 类继承并相互链接的对象似乎非常简单。我想知道java代码中的类似内容。
有没有人有相同的用例场景?可能的解决方案或方法?谢谢