我试图为现有项目添加一些groovy脚本,我坚持使集成测试工作.
我有几个豆标有< qualifier />标记,用于在测试和生产代码中自动装配.
在我添加’org.codehaus.groovy:groovy-all:2.4.0’之后
(尝试过其他版本)依赖项,甚至没有任何常规用法,我的集成测试停止工作,例外:
SEVERE: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5e5f7983] to prepare test instance [com.dph.groovy.vs.springtest.IntegrationTest@299c9fe7]
java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:94)
at org.springframework.test.context.DefaultTestContext.getApplicationContext(DefaultTestContext.java:72)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:117)
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:83)
at
......
Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unexpected failure during bean definition parsing
Offending resource: class path resource [spring/app-config.xml]
Bean 'service'; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Tag 'qualifier' must have a 'type' attribute
Offending resource: class path resource [spring/app-config.xml]
Bean 'service'
at org.springframework.beans.factory.parsing.FailFastProblemReporter.error(FailFastProblemReporter.java:70)
at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:85)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.error(BeanDefinitionParserDelegate.java:323)
Runnning项目(如果这很重要的话有jetty 6)虽然没有引起任何问题,所以我假设有一些技巧与spring-test联合使用groovy.
我可能只是在我的限定符中添加’type’,但是它没有解决问题,因为我有相同的限定符标签配置的外部依赖项,此外这个属性是可选的,据我所知.
我想知道至少这个问题的根源是什么.
我创建了示例项目来重现所描述的问题,并将欣赏任何想法:
https://github.com/ametiste/groovy-vs-spring-test
最佳答案 您在Spring的测试支持中发现了一个错误.
已在Spring Framework 4.1.6和4.2 RC1中修复
我已经修复了Spring Framework 4.1.6(计划于2015年3月底发布)和4.2(计划于2015年第3季度发布)的这个bug.有关详细信息,请参阅JIRA issue SPR-12768.
如果您希望在上述版本之前尝试修复,请考虑针对即将发布的每晚快照之一进行构建.
临时解决方案
与此同时,(对于允许编辑的XML配置文件),您可以通过在< qualifier>中明确设置type属性来规避此错误.标记为“org.springframework.beans.factory.annotation.Qualifier”的预期默认值.有关示例,请参阅以下XML配置.
<bean id="foo" class="java.lang.String" c:_="bar">
<qualifier value="foo" type="org.springframework.beans.factory.annotation.Qualifier" />
</bean>
问候,
山姆
(Spring TestContext Framework的作者)