以下测试说明Spring将此测试bean初始化两次。我希望有人可以告诉我为什么会这样,因为它应该只有一次。这是测试:
import org.apache.log4j.Logger;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {} )
public class TestAfterPropsSet implements InitializingBean {
private static final Logger logger = Logger.getLogger(TestAfterPropsSet.class);
@Test
public void test1() {
logger.debug("Test1");
}
@Test
public void test2() {
logger.debug("Test2");
}
public void afterPropertiesSet() throws Exception {
logger.debug("Bean Initialized");
}
} // end class
这是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">
</beans>
这是输出:
2009-10-13 21:20:04,393 [TestAfterPropsSet.java 26] DEBUG - Bean Initialized
2009-10-13 21:20:04,393 [TestAfterPropsSet.java 17] DEBUG - Test1
2009-10-13 21:20:04,393 [TestAfterPropsSet.java 26] DEBUG - Bean Initialized
2009-10-13 21:20:04,393 [TestAfterPropsSet.java 22] DEBUG - Test2
答案 0 :(得分:8)
这不是春季大会。你应该遵循JUnit约定,即套件范围的初始化或解构应该在@BeforeClass和@AfterClass中相应地完成,或者你可以使用@Autowire让Spring处理对象的范围。
将为每个测试构建一个新套件。这在JUnit3中更为明显,您必须使用指定的测试名称创建新套件。
查看JavaDoc:
测试注释告诉JUnit 它所属的公共无效方法 附件可以作为测试用例运行。 要 运行该方法,JUnit首先构造 然后是班级的新实例 调用带注释的方法。任意 测试抛出的异常将是 由JUnit报告为失败。如果不 抛出异常,测试是 假设已经成功。
您的用例有点令人费解,因为您的测试实际上并没有做任何事情而且您没有引用任何bean。默认情况下,Spring bean使用默认的scope =“singleton”属性声明,因此,如果您实际声明了一个bean,那么它将是一个缓存的单例。但是,这与方法执行无关。