美文网首页
--- SSM整合 基础篇/service层 测试代码

--- SSM整合 基础篇/service层 测试代码

作者: 楊柯林 | 来源:发表于2019-07-11 13:56 被阅读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);
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:--- SSM整合 基础篇/service层 测试代码

          本文链接:https://www.haomeiwen.com/subject/usorkctx.html