Yur*_*yna 2 java neo4j spring-data spring-data-neo4j-4 neo4j-ogm
我试图在我的项目中使用spring数据neo4j这里是一个简单的实体:
@NodeEntity
public class Actor{
@GraphId
private Long id;
@Property(name="name")
private String fullName;
@Relationship(type="ACTED_IN", direction=Relationship.OUTGOING)
private List<Movie> filmography = new ArrayList<Movie>();
}
Run Code Online (Sandbox Code Playgroud)
我想知道是否有办法告诉spring在实体关系上使用延迟加载?
| 归档时间: |
|
| 查看次数: |
1362 次 |
| 最近记录: |