MyBatis框架学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis框架学习笔记相关的知识,希望对你有一定的参考价值。

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框架学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis框架学习笔记

Mybatis框架学习笔记

动力节点Spring框架学习笔记-王鹤spring整合MyBatis

Spring框架学习笔记 --- [Spring框架整合Mybatis框架]

Java学习笔记24-MyBatis框架

Mybatis框架学习笔记