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)。
右键Run As-->JUnit Test
原文:http://www.cnblogs.com/qiqiweige/p/4916557.html