@Testpublic void testUtils() throws IOException {SqlSession session = MyBatisUtil.getSqlSession();List<Student> studentList = session.selectList("com.bjpowernode.dao.StudentDao.selectStudents");studentList.forEach( student -> System.out.println(student));session.close();}
