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


此为父文章下的链接资源


//spring整合了junit,同时 只有spring引入外部文件时需要classpath
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class PreTest {

    @Autowired
    private ItemMapper itemMapper;

    @Test
    public void test1(){

        List itemList = itemMapper.findAllItem();
        for (Item item : itemList) {
            System.out.println(item);
        }
    }

}

你可能感兴趣的:(--- SSM整合 基础篇/dao层 测试代码)