--- SSM整合 基础篇/service层 测试代码
2019-07-11 本文已影响0人
楊柯林
此为父文章下的链接资源
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class ServiceTest {
@Autowired
private ItemService itemService;
@Test
public void test1(){
List<Item> itemList = itemService.findAllItem();
for (Item item : itemList) {
System.out.println(item);
}
}
}