我想在我的应用程序中使用请求范围的bean。我使用JUnit4进行测试。如果我尝试在这样的测试中创建一个:
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:spring/TestScopedBeans-context.xml" }) public class TestScopedBeans { protected final static Logger logger = Logger .getLogger(TestScopedBeans.class); @Resource private Object tObj; @Test public void testBean() { logger.debug(tObj); } @Test public void testBean2() { logger.debug(tObj); }
使用以下bean定义:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean class="java.lang.Object" id="tObj" scope="request" /> </beans>
我得到:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'gov.nasa.arc.cx.sor.query.TestScopedBeans': Injection of resource fields failed; nested exception is java.lang.IllegalStateException: No Scope registered for scope 'request' <...SNIP...> Caused by: java.lang.IllegalStateException: No Scope registered for scope 'request'
所以我发现这个博客似乎很有帮助:http : //www.javathinking.com/2009/06/no- scope-registered-for-scope- request_5.html
但是我注意到他使用的是AbstractDependencyInjectionSpringContextTests,在Spring 3.0中似乎已弃用。我目前使用Spring 2.5,但认为切换此方法以使用文档建议的方式使用AbstractJUnit4SpringContextTests应该并不难(确定文档链接到3.8版本,但我使用的是4.4)。所以我更改测试以扩展AbstractJUnit4SpringContextTests …相同的消息。同样的问题。现在,我要覆盖的prepareTestInstance()方法未定义。好吧,也许我将那些registerScope调用放到其他地方…所以我阅读了更多有关TestExecutionListeners的内容,并认为这样做会更好,因为我不想继承spring包结构。所以我将测试更改为:
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:spring/TestScopedBeans-context.xml" }) @TestExecutionListeners({}) public class TestScopedBeans {
期望我必须创建一个自定义侦听器,但是运行时我却没有。有用!很好,但是为什么呢?我看不到任何股票侦听器在哪里注册请求范围或会话范围,为什么呢?现在还没有什么要说的,这可能不是Spring MVC代码的测试…
测试通过,因为它没有执行任何操作:)
省略@TestExecutionListeners注释时,Spring会注册3个默认侦听器,其中一个称为DependencyInjectionTestExecutionListener。该侦听器负责扫描您的测试类以查找要注入的内容,包括@Resource注释。tObj由于未定义范围,此侦听器尝试注入,但失败。
@TestExecutionListeners
DependencyInjectionTestExecutionListener
@Resource
tObj
当您声明时@TestExecutionListeners({}),您将抑制的注册DependencyInjectionTestExecutionListener,因此该测试根本不会被tObj注入,并且因为您的测试未在检查的存在tObj,所以它通过了。
@TestExecutionListeners({})
修改测试以使其执行此操作,它将失败:
@Test public void testBean() { assertNotNull("tObj is null", tObj); }
所以空着的话@TestExecutionListeners,测试就会通过,因为 什么都没发生 。
现在,解决您的原始问题。如果要尝试在测试上下文中注册请求范围,请查看的源代码WebApplicationContextUtils.registerWebApplicationScopes(),您将找到以下行:
WebApplicationContextUtils.registerWebApplicationScopes()
beanFactory.registerScope(WebApplicationContext.SCOPE_REQUEST, new RequestScope());
您可以尝试一下,看看您的计划如何,但是可能会有奇怪的副作用,因为您并不是真的打算在测试中这样做。
相反,我建议改写测试,以便您 不需要 请求作用域的bean。@Test如果您编写自包含的测试,这应该不难,不应该超过请求范围的Bean的生命周期。记住,不需要测试作用域机制,它是Spring的一部分,您可以假设它起作用。
@Test