使用spring-test-mvc在Spring控制器测试中没有注入服务

使用spring-test-mvc在Spring控制器测试中没有注入服务,第1张

概述我正在尝试为使用Spring MVC 3.1.1创建的Restful API服务器构建一组单元/集成测试.我正在尝试使用Spring-test-mvc.我是Spring的新手,因此是spring-test-mvc.我将包含我的代码的相关部分,让您了解我的结构:PurchaseController:@Controller public class Purcha

我正在尝试为使用Spring MVC 3.1.1创建的Restful API服务器构建一组单元/集成测试.

我正在尝试使用Spring-test-mvc.

我是Spring的新手,因此是spring-test-mvc.

我将包含我的代码的相关部分,让您了解我的结构:

PurchaseController:

@Controllerpublic class PurchaseController{        @autowired    private IPurchaseService purchaseService;    @RequestMapPing(value = "purchases",method = RequestMethod.GET)    @ResponseBody    public final List

PurchaseService:

@Servicepublic class PurchaseService implements IPurchaseService{    @autowired    private IPurchaseDAO purchaseDAO;    public PurchaseService()    {    }    @Transactional    public List

PurchaseDAO:

@Repositorypublic class PurchaseDAO extends AbstractJpaDAO

AbstractJpaDAO:

public abstract class AbstractJpaDAO

这是我的控制器测试:

public class PurchaseControllerTest extends AbstractControllerTest{    @autowired    private IPurchaseService purchaseService;    @autowired    private PurchaseController purchaseController;    private mockmvc mockmvc;    @Before    public voID setup()    {        // Test Purchase        Purchase purchase = new Purchase();        purchase.setPan(5412311111111121l);        purchase.setCvc((short) 122);        purchase.setExpiry("1215");        purchase.setMerchantname("TestMerchant");        purchase.setMerchantType("Airline");        purchase.setTransactionAmount(new BigDecimal("300.99"));        mockmvc = mockmvcBuilders.standalonesetup(purchaseController).build();        purchaseService.addPurchase(purchase);    }    @Test    public voID testGetAll() throws Exception    {        this.mockmvc                .perform(get("/purchase").accept(MediaType.APPliCATION_JsON))                .andExpect(status().isOk())                .andExpect(content().type(MediaType.APPliCATION_JsON));    }}

AbstractControllerTest:

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(classes = {ControllerTestConfig.class},loader=AnnotationConfigContextLoader.class)@ActiveProfiles("test")public class AbstractControllerTest{}

ControllerTestConfig:

@Configuration@Profile("test")public class ControllerTestConfig {    @Beanpublic PurchaseService purchaseService(){    return new PurchaseService();}@Beanpublic PurchaseDAO purchaseDAO(){    return new PurchaseDAO();}@Beanpublic EntityManagerFactory entityManager(){    return new LocalEntityManagerfactorybean().getobject();}}

通过Eclipse的JUnit运行我的测试时出现以下错误:

2012-07-08 16:16:00,017 TRACE [main] o.s.c.s.GenericApplicationContext [AbstractApplicationContext.java:322] Publishing event in org.springframework.context.support.GenericApplicationContext@42b307f0: org.springframework.context.event.ContextRefreshedEvent[source=org.springframework.context.support.GenericApplicationContext@42b307f0: startup date [Sun Jul 08 16:15:59 IST 2012]; root of context hIErarchy]2012-07-08 16:16:00,018 DEBUG [main] o.s.t.c.TestContext [TestContext.java:150] Storing ApplicationContext for test class [class com.app.controller.PurchaseControllerTest] in cache under key [[MergedContextConfiguration@2f8a49e0 testClass = PurchaseControllerTest,locations = '{}',classes = '{class com.app.spring.testing.ControllerTestConfig}',activeProfiles = '{test}',contextLoader = 'org.springframework.test.context.support.AnnotationConfigContextLoader']].2012-07-08 16:16:00,019 TRACE [main] o.s.b.CachedIntrospectionResults [CachedIntrospectionResults.java:222] Getting BeanInfo for class [com.app.controller.PurchaseControllerTest]2012-07-08 16:16:00,022 TRACE [main] o.s.b.CachedIntrospectionResults [CachedIntrospectionResults.java:238] Caching PropertyDescriptors for class [com.app.controller.PurchaseControllerTest]2012-07-08 16:16:00,022 TRACE [main] o.s.b.CachedIntrospectionResults [CachedIntrospectionResults.java:250] Found bean property 'class' of type [java.lang.class]2012-07-08 16:16:00,023 TRACE [main] o.s.b.CachedIntrospectionResults [CachedIntrospectionResults.java:250] Found bean property 'mockmvc' of type [org.springframework.test.web.server.mockmvc]2012-07-08 16:16:00,026 DEBUG [main] o.s.b.f.a.InjectionMetadata [InjectionMetadata.java:60] Found injected element on class [com.app.controller.PurchaseControllerTest]: autowiredFIEldElement for private com.app.service.IPurchaseService com.app.controller.PurchaseControllerTest.purchaseService2012-07-08 16:16:00,026 DEBUG [main] o.s.b.f.a.InjectionMetadata [InjectionMetadata.java:60] Found injected element on class [com.app.controller.PurchaseControllerTest]: autowiredFIEldElement for private com.app.controller.PurchaseController com.app.controller.PurchaseControllerTest.purchaseController2012-07-08 16:16:00,027 DEBUG [main] o.s.b.f.a.InjectionMetadata [InjectionMetadata.java:85] Processing injected method of bean 'com.app.controller.PurchaseControllerTest': autowiredFIEldElement for private com.app.service.IPurchaseService com.app.controller.PurchaseControllerTest.purchaseService2012-07-08 16:16:00,034 ERROR [main] o.s.t.c.TestContextManager [TestContextManager.java:324] Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@403ef810] to prepare test instance [com.app.controller.PurchaseControllerTest@656546ef]org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.app.controller.PurchaseControllerTest': Injection of autowired dependencIEs Failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire fIEld: private com.app.service.IPurchaseService com.app.controller.PurchaseControllerTest.purchaseService; nested exception is org.springframework.beans.factory.NoSuchBeanDeFinitionException: No matching bean of type [com.app.service.IPurchaseService] found for dependency: expected at least 1 bean which qualifIEs as autowire candIDate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.autowired(required=true)}    at org.springframework.beans.factory.annotation.autowiredAnnotationBeanPostProcessor.postProcesspropertyValues(autowiredAnnotationBeanPostProcessor.java:287) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.beans.factory.support.AbstractautowireCapablebeanfactory.populateBean(AbstractautowireCapablebeanfactory.java:1106) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.beans.factory.support.AbstractautowireCapablebeanfactory.autowireBeanPropertIEs(AbstractautowireCapablebeanfactory.java:374) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencIEs(DependencyInjectionTestExecutionListener.java:110) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]

关于为什么我的PurchaseService没有被创建和注入的任何想法?

UPDATE

所以我将我的购买服务Bean添加到ControllerTestConfig …现在我收到有关我的purchaseDAO的错误.

如何将其添加到ControllerTestConfig中?是否必须嵌套在购买Bean中?

2012-07-08 18:30:23,029 ERROR [main] o.s.t.c.TestContextManager [TestContextManager.java:324] Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@56da6bf4] to prepare test instance [com.app.controller.PurchaseControllerTest@df4cbee]java.lang.IllegalStateException: Failed to load ApplicationContext    at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:157) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencIEs(DependencyInjectionTestExecutionListener.java:109) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:321) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:211) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runReflectiveCall(SpringJUnit4ClassRunner.java:288) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:290) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runchild(SpringJUnit4ClassRunner.java:231) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.runners.BlockJUnit4ClassRunner.runchild(BlockJUnit4ClassRunner.java:50) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.run(ParentRunner.java:193) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.schedule(ParentRunner.java:52) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.runchildren(ParentRunner.java:191) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.accessjava.lang.IllegalStateException: Failed to load ApplicationContext    at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:157) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencIEs(DependencyInjectionTestExecutionListener.java:109) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:75) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:321) ~[spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:211) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runReflectiveCall(SpringJUnit4ClassRunner.java:288) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:290) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runchild(SpringJUnit4ClassRunner.java:231) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.runners.BlockJUnit4ClassRunner.runchild(BlockJUnit4ClassRunner.java:50) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.run(ParentRunner.java:193) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.schedule(ParentRunner.java:52) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.runchildren(ParentRunner.java:191) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.accessmockmvcBuilders.annotationConfigSetup(ControllerTestConfig.class).build().perform(get("/purchase").accept(MediaType.APPliCATION_JsON))                .andExpect(status().isOk())                .andExpect(content().type(MediaType.APPliCATION_JsON));0(ParentRunner.java:42) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.evaluate(ParentRunner.java:184) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.runners.ParentRunner.run(ParentRunner.java:236) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:174) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) [.cp/:na]Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'purchaseService': Injection of autowired dependencIEs Failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire fIEld: private com.app.persistence.dao.IPurchaseDAO com.app.service.impl.PurchaseService.purchaseDAO; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'purchaseDAO': Injection of persistence dependencIEs Failed; nested exception is java.lang.NullPointerException    at org.springframework.beans.factory.annotation.autowiredAnnotationBeanPostProcessor.postProcesspropertyValues(autowiredAnnotationBeanPostProcessor.java:287) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]0(ParentRunner.java:42) [junit-4.8.1.jar:na]    at org.junit.runners.ParentRunner.evaluate(ParentRunner.java:184) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.junit.runners.ParentRunner.run(ParentRunner.java:236) [junit-4.8.1.jar:na]    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:174) [spring-test-3.1.1.RELEASE.jar:3.1.1.RELEASE]    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) [.cp/:na]    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) [.cp/:na]Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'purchaseService': Injection of autowired dependencIEs Failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire fIEld: private com.app.persistence.dao.IPurchaseDAO com.app.service.impl.PurchaseService.purchaseDAO; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'purchaseDAO': Injection of persistence dependencIEs Failed; nested exception is org.springframework.beans.factory.NoSuchBeanDeFinitionException: No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0    at org.springframework.beans.factory.annotation.autowiredAnnotationBeanPostProcessor.postProcesspropertyValues(autowiredAnnotationBeanPostProcessor.java:287) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]

我将PurchaseDAO bean添加到ControllerTestConfig.

更新2

所以现在我将一个EntityManagerFactory Bean添加到我的ControllerTestConfig后得到一个空指针异常!

有任何想法吗?
谢谢最佳答案这不起作用,因为spring-test-mvc不会从Junit的ContextConfiguration中选择上下文配置,而是可以执行此 *** 作(假设您的Service Bean正在通过ControllerTestConfig配置在某处加载):

          总结       

以上是内存溢出为你收集整理的使用spring-test-mvc在Spring控制器测试中没有注入服务全部内容,希望文章能够帮你解决使用spring-test-mvc在Spring控制器测试中没有注入服务所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1248462.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存