码迷,mamicode.com
首页 > 其他好文 > 详细

MyBatis框架学习笔记(1)

时间:2016-10-19 02:13:40      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

1. Mybatis向dao层传入能够连接交互数据库并进行操作的对象  
sqlSession 作用:
- 向sql语句传入参数
- 执行sql语句
- 获取执行sql语句后的结果
- 事务的控制

2.  如何得到SqlSession:
- 通过配置文件获取数据库连接相关信息
- 通过配置的相关信息构建SqlSessionFactory
- 通过SqlsessionFactory打开 数据库会话(SqlSession)

3.  实体映射文件配置Mapper
数据库中的数据类型跟jdbc中的Type中的常量有着对应关系
    <resultMap>
        <id />//映射为主键字段
        <result />//映射为普通字段
    </resultMap>//用于映射实体


     <resultMap type="com.huangdong.bean.Student" id="UserResult">
            <id column="Sno" jdbcType="INTEGER" property="Sno"/>
            <result column="Sname" jdbcType="VARCHAR" property="Sname"/>
            <result column="Ssex" jdbcType="VARCHAR" property="Ssex"/>
            <result column="Sdept" jdbcType="VARCHAR" property="Sdept"/>
     </resultMap>

    <select id="getStudentList" parameterType="long" resultMap="StudentResult">
       SELECT * FROM Student WHERE id = #{id:INTEGER}
    </select>
- property:实体属性
- column:表字段名称
- resultMap属性指向resultMap标签相应的id

MyBatis框架学习笔记(1)

标签:

原文地址:http://www.cnblogs.com/ZengHuangDong/p/5975427.html

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