在 interface/abstract class 上使用 @NodeEntity

Use @NodeEntity on interface/abstract class

是否可以在接口或抽象 class 或其字段上添加来自 SpringData Neo4j@NodeEntity(甚至 @RelationshipEntity)注释?如果没有,您如何处理这些情况?

@NodeEntity 或@RelationshipEntity 需要在 POJO 或具体 类 上定义。认为它与 Hibernate 中的 @Entity 相同。 但是您是否看到任何有效的注释接口或抽象的用例 类?

您当然可以在 Abstract classes 上这样做,而且我认为在某些常见情况下这是一种很好的做法。让我举一个我在图形模型中使用的例子:

@NodeEntity
public abstract class BasicNodeEntity implements Serializable {

   @GraphId
   private Long nodeId;

   public Long getNodeId() {
      return nodeId;
   }

   @Override
   public abstract boolean equals(Object o);

   @Override
   public abstract int hashCode();
}


public abstract class IdentifiableEntity extends BasicNodeEntity {

   @Indexed(unique = true)
   private String id;

   public String getId() {
      return id;
   }

   public void setId(String id) {
      this.id = id;
   }

   @Override
   public boolean equals(Object o) {
      if (this == o) return true;
      if (!(o instanceof IdentifiableEntity)) return false;

      IdentifiableEntity entity = (IdentifiableEntity) o;

      if (id != null ? !id.equals(entity.id) : entity.id != null) return false;

      return true;
   }

   @Override
   public int hashCode() {
      return id != null ? id.hashCode() : 0;
   }
}

可识别实体的示例。

public class User extends IdentifiableEntity {
   private String firstName;
   // ...

   public String getFirstName() {
      return firstName;
   }

   public void setFirstName(String firstName) {
      this.firstName = firstName;
   }
}

OTOH,据我所知,如果您使用 @NodeEntity 注释接口,那些实现接口的 classes 不会继承注释。为了确保我已经做了一个测试来检查它并且肯定 spring-data-neo4j 抛出一个异常,因为不识别继承的 class 既不是 NodeEntity 也不是 RelationshipEntity.

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'neo4jMappingContext' defined in class org.springframework.data.neo4j.config.Neo4jConfiguration: Invocation of init method failed; nested exception is org.springframework.data.neo4j.mapping.InvalidEntityTypeException: Type class com.xxx.yyy.rest.user.domain.User is neither a @NodeEntity nor a @RelationshipEntity

希望对您有所帮助