最佳答案
我们有一些 JUnit 测试用例(集成测试) ,它们在逻辑上被分组到不同的测试类中。
我们能够在每个测试类中加载 Spring 应用程序上下文一次,并为 http://static.springsource.org/spring/docs/current/spring-framework-reference/html/testing.html中提到的 JUnit 测试类中的所有测试用例重用它
然而,我们只是想知道是否有一种方法可以为一组 JUnit 测试类只加载一次 Spring 应用程序上下文。
FWIW,我们使用 Spring3.0.5,JUnit4.5和 Maven 来构建项目。