3

我目前正在实施一些测试样本来学习 Neo4j 和 Spring 数据,感谢 cineast 项目和其他样本,如 spring-data hello-worlds ...

不幸的是,我现在面临一个我不明白的问题,即使我已经在我的代码和其他示例代码上的 eclipse 调试器上花费了一些时间来尝试编译并找到解决方案。这个问题对我来说尤其困难,因为我无法验证 Neo4j 的持久性,即使它真的应该是一个微不足道的用例......

这是我正在测试的课程:

@NodeEntity 
public class SimplePersonImpl {
@GraphId 
private Long nodeId;

@Indexed
private String    id        = null;

@Indexed(indexType=IndexType.FULLTEXT, indexName = "LastName")
private String    lastName  = null;
@Indexed(indexType=IndexType.FULLTEXT, indexName = "FirstName")
private String    firstName = null;

public SimplePersonImpl() {

}

public SimplePersonImpl(String firstName_, String lastName_) {
    this.firstName=firstName_;
    this.lastName=lastName_;
    this.id=this.firstName+"."+this.lastName;
}

public String getID() {
    return this.id;
}

public String getFirstName() {
    return this.firstName;
}

public String getLastName() {
    return this.lastName;
}

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

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

public void setLastName(String lastName_) {
    this.lastName=lastName_;
}

@Override
public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    SimplePersonImpl person = (SimplePersonImpl) o;
    if (nodeId == null) return super.equals(o);
    return nodeId.equals(person.nodeId);

}

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

@Override
public String toString() {
    return String.format("Person{first name='%s', last name='%s'}", firstName, lastName);
}
}

我目前正在测试这个类,感谢以下 jUnit 测试用例:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"/yes-test-context.xml"})
@Transactional
public class SimplePersonImplTest {
@Autowired Neo4jTemplate template;

@Rollback(false)
@BeforeTransaction
public void cleanUpGraph() {
    Neo4jHelper.cleanDb(template);
}

@Test @Transactional
public void persistedPersonShouldBeRetrievableFromGraphDB() {
    SimplePersonImpl qqun          = template.save(new SimplePersonImpl());
    SimplePersonImpl retrievedQqun = template.findOne(qqun.getNodeId(), SimplePersonImpl.class);
    assertEquals("retrieved person matches persisted one", qqun, retrievedQqun);
}

@Test @Transactional
public void persistedPersonWithPropertiesShouldBeRetrievableFromGraphDB() {
    SimplePersonImpl qqun = template.save(new SimplePersonImpl("testFN","testLN"));

    SimplePersonImpl retrievedQqun = template.findOne(qqun.getNodeId(), SimplePersonImpl.class);
    assertEquals("check memory first name matches persisted one", qqun.getFirstName(), retrievedQqun.getFirstName());       
    assertEquals("check memory last name matches persisted one", qqun.getLastName(), retrievedQqun.getLastName());
}
}

第一个测试运行成功,但第二个测试失败。使用 eclipse 调试器检查时,我可以看到:

  • 保存方法后返回一个 SimplePersonImpl qqun 具有正确的 firtName、lastName 和 id 值。但是 nodeId 为空,我不明白为什么。但是由于这种行为在 spring-data hello-worlds 示例中是相同的,我想我的问题不是来自那里。
  • 在 findOne 方法中,即使我的 qqun 对象中的 nodeId 为空,qqun.getNodeId() 也会返回 1。我不明白这个值是从哪里来的,但让我们继续
  • findOne 方法返回一个检索到的Qqun。所有检索到的Qqun 属性均为空,这似乎是我在 firstName 上的第一个 assertEquals 失败的原因。

在这里,我真的不明白我在哪里做错了(我想我做错了),但很明显 spring-data neo4j 持久性背后有很多我不明白的事情。我很乐意在这些点上得到一些答案(为什么我在保存调用后看到 nodeId=null ?为什么我检索一个所有属性都为 null 的非 null 对象?...)。

可能出现一些错误的最后一点是我的测试上下文配置,但我还是看不出问题出在哪里:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/data/neo4j
    http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd">

<context:annotation-config/>
<context:spring-configured/>
<context:component-scan base-package="yes.ds.domain.neo4j"/>

<neo4j:config graphDatabaseService="graphDatabaseService"/>
<bean id="graphDatabaseService" class="org.neo4j.test.ImpermanentGraphDatabase" destroy-method="shutdown"/>
<!-- <neo4j:config storeDirectory="target/neo4j-db"/> -->
<neo4j:repositories base-package="yes.ds.repository.neo4j"/>
<tx:annotation-driven mode="proxy"/></beans>

谢谢

4

1 回答 1

0

我想我在创建的测试实体中遇到了类似的问题。在那种特殊情况下,我忘记用@Transactional.

@Transactional的getter 和 setter 都需要注释NodeEntities,否则它们的行为就像您描述的那样。添加注释为我修复了它。

必须启用事务支持。

于 2015-05-03T20:37:14.000 回答