Neo4j Spring Data NodeEntity 使用字符串作为@id

Posted

技术标签:

【中文标题】Neo4j Spring Data NodeEntity 使用字符串作为@id【英文标题】:Neo4j Spring Data NodeEntity use String as @id 【发布时间】:2018-08-30 05:58:42 【问题描述】:

我正在尝试使用 java.lang.String 作为 NodeEntity 的 @Id。

 @NodeEntity(label = "MachineType")
 public class MachineType 
     @Id private String id;
     ....

根据spring数据neo4j文档应该是可以的:

While an id is still required on all entities, the behavior has been
simplified by introducing the new @Id annotation. It replaces both
@GraphId and the primary attribute and can be placed on any attribute 
with a simple type.

当我尝试插入时,我得到一个:


    "cause": null,
    "message": "Id must be assignable to Serializable!: null"

这很奇怪,因为 String 实现了 Serializable。 有人知道下一步该去哪里搜索吗?

【问题讨论】:

【参考方案1】:

我认为您不能使用其他任何东西作为 ID。请记住,如果您删除节点,此长编号将被重用。

我使用 UUID 插件生成真正的唯一键,当我使用 spring-data-rest 时,我使用 BackendIdConverter 将 id 更改为我公开的资源的 uuid。

示例: 型号:

@NodeEntity
@Data
public class Target 

    @Id @GeneratedValue Long id;   // <----Neo4j id 

    private String uuid;           // <----My Key

    @Version Long version;
    private List<String> labels = new ArrayList<>();
    @Relationship(type = "HAS_MEDIA", direction=Relationship.OUTGOING)
    private List<Gallery> media = new ArrayList<>();

将资源 id 转换为我的密钥:

@Component 
public class MovieIdConverter implements BackendIdConverter 
    @Autowired MovieRepo movieRepository;

    @Override
    public Serializable fromRequestId(String id, Class<?> entityType) 
        Movie movie = movieRepository.findByUuid(id);
        return  (Serializable) movie.getId();
    

    @Override
    public String toRequestId(Serializable serializable, Class<?> aClass) 
        Long id = (Long) serializable;
        Optional<Movie> movie = movieRepository.findById(id);
        if (movie.isPresent()) return movie.get().getUuid();
        return null;


    @Override
    public boolean supports(Class<?> aClass) 
        return Movie.class.equals(aClass);
    

【讨论】:

以上是关于Neo4j Spring Data NodeEntity 使用字符串作为@id的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 2.0 neo4j 使用

IgnoreCase Finder 不适用于 Spring Data Rest 和 Neo4J

Neo4j:不知道如何将图形映射到 Spring Data bean

Spring Data Neo4j 多态关联出现嵌入

如何在 Grails 2.4.2 项目中集成 Spring Data Neo4j 和 Mongodb

Neo4j Spring Data NodeEntity 使用字符串作为@id