AreaServiceTest
来源:2-9 验证Sevice
慕哥4604697
2019-04-03
没有丝毫头绪···老师能看下吗
写回答
2回答
-
翔仔
2019-04-04
同学好,这里说的是你的areaService缺乏对应的实现类注入,请确保你的测试类里面areaService使用了@Autowire标签,并且你的测试类继承BaseTest 同时BaseTest里面加载了spring-service.xml
@RunWith(SpringJUnit4ClassRunner.class) // 告诉junit spring配置文件的位置 @ContextConfiguration({ "classpath:spring/spring-dao.xml", "classpath:spring/spring-service.xml"}) public class BaseTest { }
112019-04-05 -
翔仔
2019-04-06
同学再看看spring-service.xml里面的package是否对上
<context:component-scan base-package="com.imooc.o2o.service" />
以及service是否真的有AreaServiceImpl implements AreaService
062019-04-07
相似问题