mybatis中session.getMapper()方法和resultMap
Posted 努力奋斗吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中session.getMapper()方法和resultMap相关的知识,希望对你有一定的参考价值。
session.getMapper()方法的使用:
定义接口
/**
* 查询所有
* @return
*/
public List<Student> getAll();
SQL映射文件,做如下设置
<mapper namespace="cn.happy.dao.IStudentDAO">
<select id="getAll" resultMap="studentMap" useCache="false">
select * from student
</select>
</mapper>
测试类:
/**
* 查询所有
*/
@Test
public void getAll() throws Exception{
SqlSession session = MyBatisUtil.getSession();
IStudentDAO mapper = session.getMapper(IStudentDAO.class);
List<Student> all = mapper.getAll();
for (Student item:all){
System.out.println(item.getId()+ item.getName()+ item.getAge());
}
//提交事务
session.commit();
//关闭会话,释放资源
session.close();
}
resultMap实现结果映射
以上是关于mybatis中session.getMapper()方法和resultMap的主要内容,如果未能解决你的问题,请参考以下文章
SSM-MyBatis-10:Mybatis中SqlSession的getMapper()和简单的工具类MyBatisUtils