在tomcat 7上运行web-app,我的部署描述符包含2个侦听器,一个我创建的自定义侦听器和另一个Spring:
<listener>
<listener-class>com.company.appName.web.context.MyContextListener</listener-class>
</listener>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
当我运行集成测试时,我的监听器根本就不会被调用,所以为了克服它,我自己做了一些初始化(调用一些基本上是从这个监听器调用的静态方法)矿)。无论如何,我想我在这里错过了一些东西,听众何时被召唤?为什么在我的集成测试期间没有初始化?更具体地说,Spring上下文已初始化,因为我在测试类的顶部声明它:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:testApplicationContext.xml" })
因此实际上从未使用过web.xml ..
在这种情况下,首先调用spring上下文,在初始化之前我没有机会做任何事情 - 是这样吗?有没有办法在spring的上下文之前运行一些代码?
更新: 我还想提一下,我在我的测试套件中使用@BeforeClass注释:
@RunWith(Categories.class)
@IncludeCategory(HttpTest.class)
@SuiteClasses({ <MY TEST CLASSES> })
public class HttpSuiteITCase {
/**
* Run once before any of the test methods.
*/
@BeforeClass
public static void setTestsConfigurations() {
TestConfiguration.setup(false);
}
}
使用这种方法无法解决问题,测试类和我的所有spring bean首先被初始化。
提前致谢
答案 0 :(得分:2)
使用@BeforeClass
在测试类中注释static
方法并在那里进行初始化。例如:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:testApplicationContext.xml" })
public class TestTest {
@BeforeClass
static public void beforeClass() {
// do intialization here
}
如果您的初始化代码需要访问类字段,因此不能static
,那么您可以设置TestExecutionListener
并实现beforeTestClass()
。有关示例,请参阅this blog post。
答案 1 :(得分:0)
你可以在你的测试环境中使用bean中的init-method。
<bean id="exampleInitBean" class="examples.ExampleBean" init-method="init"/>
public class ExampleBean {
public void init() {
// do some initialization work
}
}