java-Spring ROO:JUnit测试失败

当我运行下面的代码时,我在执行Spring IntegrationTests时遇到麻烦,在persist方法中失败了:

@RooIntegrationTest(entity = Person.class)
public class PersonIntegrationTest {

    @Test
    public void test() {

    }
    @Test
    public void testCountPeople(){
         Person personToPersist = PersonTestUtil.createTestPerson();

         personToPersist.persist();
         Long count = Person.countPeople();
         assertNotNull(personToPersist);
         assertTrue(personToPersist.countPeople() == 1);

    }
}

堆栈跟踪如下

java.lang.IllegalStateException: Entity manager has not been injected (is the Spring Aspects JAR configured as an AJC/AJDT aspects library?)
    at org.bixin.dugsi.domain.Person_Roo_Entity.ajc$interMethod$org_bixin_dugsi_domain_Person_Roo_Entity$org_bixin_dugsi_domain_Person$entityManager(Person_Roo_Entity.aj:95)
    at org.bixin.dugsi.domain.Person.entityManager(Person.java:1)
    at org.bixin.dugsi.domain.Person_Roo_Entity.ajc$interMethoddispatch1$org_bixin_dugsi_domain_Person_Roo_Entity$org_bixin_dugsi_domain_Person$entityManager(Person_Roo_Entity.aj)
    at org.bixin.dugsi.domain.Person_Roo_Entity.ajc$interMethod$org_bixin_dugsi_domain_Person_Roo_Entity$org_bixin_dugsi_domain_Person$persist(Person_Roo_Entity.aj:58)
    at org.bixin.dugsi.domain.Person.persist(Person.java:1)
    at org.bixin.dugsi.domain.Person_Roo_Entity.ajc$interMethoddispatch1$org_bixin_dugsi_domain_Person_Roo_Entity$org_bixin_dugsi_domain_Person$persist(Person_Roo_Entity.aj)
    at org.bixin.dugsi.domain.PersonIntegrationTest.testCountPeople(PersonIntegrationTest.java:25)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
    at org.junit.runners.BlockJUnit4ClassRunner.runchild(BlockJUnit4ClassRunner.java:71)
    at org.junit.runners.BlockJUnit4ClassRunner.runchild(BlockJUnit4ClassRunner.java:49)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runchildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

有人遇到这个问题吗?

最佳答案
看来您尚未将EntityManager和相关的应用程序上下文注入到测试中.

请尝试在类声明上方添加以下行.

@ContextConfiguration(locations = { "/meta-inf/spring/applicationContext.xml","/meta-inf/spring/applicationContext-security.xml" })

并尝试使您的测试类继承自AbstractJUnit4SpringContextTests.请记住,您可能必须对要执行的某些操作实施身份验证.

您的测试课程如下所示.

package com.myapp.test;

@ContextConfiguration(locations = { "/meta-inf/spring/applicationContext.xml","/meta-inf/spring/applicationContext-security.xml" })
public class TestMyService extends AbstractJUnit4SpringContextTests {

    @Autowired
    MyService service = new MyService();

    private void setUp() {
        //Do the setting up of your classes for the test
    }

    @Test
    public void testOperation() throws IOException {
        //My Test Code here
    }
}

请注意,出于测试目的,通常应使用其他上下文.

干杯.

相关文章

这篇文章主要介绍了spring的事务传播属性REQUIRED_NESTED的原...
今天小编给大家分享的是一文解析spring中事务的传播机制,相...
这篇文章主要介绍了SpringCloudAlibaba和SpringCloud有什么区...
本篇文章和大家了解一下SpringCloud整合XXL-Job的几个步骤。...
本篇文章和大家了解一下Spring延迟初始化会遇到什么问题。有...
这篇文章主要介绍了怎么使用Spring提供的不同缓存注解实现缓...