我无法为以下测试类找到合适的答案:
@ContextConfiguration("classpath:services.xml")
@RunWith(SpringJUnit4ClassRunner.class)
public class RunnableServiceTest {
@Test
public void testConfiguration(){
Collection<Service> lAllService = >>getBeansOfType(Service.class)<<;
assertFalse(lAllService.isEmpty());
}
}
我想从context
类型的有界services.xml
Service
收集所有Spring托管bean。
我很确定必须有这样的东西,但我不知道我要搜索什么。
非常感谢你的帮助。
的Stefan
答案 0 :(得分:1)
您可以使用自动装配的List
@ContextConfiguration("classpath:services.xml")
@RunWith(SpringJUnit4ClassRunner.class)
public class RunnableServiceTest {
@Autowired
private List<Service> lAllService;
@Test
public void testConfiguration(){
assertFalse(lAllService.isEmpty());
}
}