码迷,mamicode.com
首页 > 移动开发 > 详细

mybatis中session.getMapper()方法和resultMap

时间:2017-09-30 00:24:55      阅读:825      评论:0      收藏:0      [点我收藏+]

标签:resultmap   commit   mit   nbsp   throw   释放   png   style   span   

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

标签:resultmap   commit   mit   nbsp   throw   释放   png   style   span   

原文地址:http://www.cnblogs.com/sujulin/p/7613068.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!