我有一个类,看起来像这样
@Data
@NodeEntity
public class StoryCharacter {
@Index(unique = true)
private String agnosticId;
private String name;
@Relationship(type = "FAMILIAR_WITH")
private Set<StoryCharacter> acquaintances;
}
我需要的是不相关的默认定制ID long
ID。 所以我介绍一个字段并将其设置为index
。
但如何找到该ID的对象?
我想要做这样的
session.openSession().load(StoryCharacter.class, "custom_id")
但它失败,错误,它必须是Long
。 我想,也许我需要使用Filter
对象通过ID进行搜索。 或者有另一种方式?