I. 加入依赖包
- Spring Test (如spring-test-2.5.4.jar)
- JUnit 4
- Spring 其他相关包
II.新建Junit Test Case
III.读取配置文件
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:/applicationContext.xml" })
public class GoodsServiceTest { @Resource private GoodsService goodsServiceImpl; @Test public void test(){ //加载Log4j配置 PropertyConfigurator.configure(Test.class.getClassLoader().getResource("log4j.properties")); } }
注意:要加载的applicationContext.xml的路径问题:上述的代码是基于classpath,因此applicationContext.xml和log4j.properties必须放在classpath下(详情:http://www.cnblogs.com/qiqiweige/p/4916458.html)。
III.运行
右键Run As-->JUnit Test
时间: 2024-10-10 11:00:30