2023-09-10 10:37:48 补充
注意:下面是旧版本的语法,如果你发现@NodeEntity这样的注解没有的话可以这样:
@Data
@Node("person")
public class Person implements Serializable {
@Id
@GeneratedValue
private Long id;
@Property
private String name;
}
这里就要用@Node 另外如果@StartNode和@EndNode都没有了,那么说明是用法变了.
关于最新的用法,在官网有明确的说明和案例,很有用:文章来源:https://www.toymoban.com/news/detail-708834.html
https://neo4j.com/developer/spring-data-neo4j/
下面给出官网的案例:文章来源地址https://www.toymoban.com/news/detail-708834.html
@Node("Movie")
public class MovieEntity {
@Id
private final String title;
@Property("tagline")
private final String description;
@Relationship(type = "ACTED_IN", direction = INCOMING)
private Set<PersonEntity> actors = new HashSet<>();
@Relationship(type = "DIRECTED", direction = INCOMING
到了这里,关于图数据库_Neo4j和SpringBoot Data整合使用_实战创建明星关系图谱---Neo4j图数据库工作笔记0010的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!