gpt4 book ai didi

java - spring-data-neo4j 基本一对多关系不持久

转载 作者:搜寻专家 更新时间:2023-11-01 03:20:28 26 4
gpt4 key购买 nike

EDIT: Sample project available on github.

我在后端项目中使用 Neo4J(Rest 图形数据库,托管在 grapheneDb 中)和 Spring Data。

<bean id="graphDatabaseService" class="org.springframework.data.neo4j.rest.SpringCypherRestGraphDatabase">

我在两个实体之间有一个简单的一对多关系:UserStay

编辑:我认为这与问题无关,但在看到 similar problem 之后在 SDN4 中,我想我需要更新问题(有一个基本的 @NodeEntity 类,两个实体都扩展了这个基类)。

@NodeEntity
public abstract class BasicNodeEntity implements Serializable {

@GraphId
private Long nodeId;
}


public class User extends BasicNodeEntity {

@RelatedTo(type = "HAS_STAY", direction = Direction.OUTGOING)
Set<Stay> stays;

public void addStay(Stay stay) {
stays.add(stay);
}
}

public class Stay extends BasicNodeEntity {

@RelatedTo(type = "HAS_STAY", direction = Direction.INCOMING)
User user;
}

我无法坚持住不止一次。我添加给用户的第一个停留是正确的,但只是第一个。添加的下一个停留永远不会持续存在,我总是检索第一个。

我用来创建新住宿的方法是:

   @Autowired
Neo4jOperations template;

@Transactional
private void createStay(Stay stay, User user) throws Exception {
stay = template.save(stay);
user.addStay(stay);
template.save(user);
// If i evaluate user at this point, it contains both stays

// But if I retrieve the user from the repository, it just contains
// the first stay, the second one has not persisted.
}

编辑:通过 UserRepository 正确检索修改的用户。

public interface UserRepositoryCustom {}

public interface UserRepository extends GraphRepository<User>, UserRepositoryCustom {
User findById(String id);
}

User user = userRepository.findById(userId);

注意:我也尝试通过存储库界面而不是 Neo4jTemplate 界面进行保存,但我遇到了同样的问题。

两个实体都正确保存在 neo4j 数据库中,这只是一个持久性问题。

我认为这应该很容易,所以我可能遗漏了一些东西..

如有任何帮助,我们将不胜感激。

相关版本:

<spring.version>4.0.5.RELEASE</spring.version>
<spring-data-neo4j.version>3.3.2.RELEASE</spring-data-neo4j.version>

还有一个SO question有一个非常相似的问题,但到目前为止没有回应。

最佳答案

这是一件棘手的事情。

您的自定义 equals 方法 使两个已设置 node-id 但尚未设置 uuid-id 的实体相等,这样当将它们加载到一个集合中时,该集合将只包含一个.

代码在:RelationshipHelper

protected Set<Object> createEntitySetFromRelationshipEndNodes(Object entity, final MappingPolicy mappingPolicy, final Class<?> relatedType) {
final Iterable<Node> nodes = getStatesFromEntity(entity);
final Set<Object> result = new HashSet<Object>();
for (final Node otherNode : nodes) {
Object target = template.createEntityFromState(otherNode, relatedType, mappingPolicy);
result.add(target);
}
return result;
}

如果您将代码更改为在 BasicNode 实体中包含一个 equals/hashcode:

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

BasicNodeEntity that = (BasicNodeEntity) o;

if (nodeId != null) {
if (!nodeId.equals(that.nodeId)) return false;
} else {
if (that.nodeId != null) return false;
}

return true;
}

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

这样只有一个 nodeId 集的实体是可比较的

并调整子类方法

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

IdentifiableEntity entity = (IdentifiableEntity) o;
//change
if (!super.equals(o)) return false;

if (id != null) {
if (!id.equals(entity.id)) return false;
} else {
if (entity.id != null) return false;
}

return true;
}

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

然后就可以了。

如果您正在使用 Neo4j Server,我建议您查看 SDN 4 RC2。而不是周五发布的。

关于java - spring-data-neo4j 基本一对多关系不持久,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31948339/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com