微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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
    }
}

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

干杯.

原文地址:https://www.jb51.cc/spring/531788.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐