一、mybatis 核心概念

1. 基本概念

Mybatis 是一款优秀的持久层框架,它支持定制化SQL 存储过程以及高级映射。 Mybatis 避免了几乎所有的JDBC代码和手动设置参数以及获取结果集。 Mybatis 可以使用简单的XML或注解来配置和映射原生类型、接口和Java的POJO(Plain Old Java Object)为数据库对象。

其它持久层解决方案对比:

JDBC
DataUtils
JDBCTemplate
Hibernate

2. 核心对象的作用域与生命周期

简单实例:

UserMapper.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.tuling.mybatis.dao.UserMapper">
  6. <select id="selectUser" resultType="com.tuling.mybatis.dao.User">
  7. select * from User where id = #{id}
  8. </select>
  9. </mapper>

Mybatis-config.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://192.168.0.147/luban"/>
                <property name="username" value="root"/>
                <property name="password" value="123456"/>
            </dataSource>
        </environment>
    </environments>
    <mappers>
        <!--<mapper resource="com/tuling/mybatis/dao/xml/UserMapper.xml"/>-->
        <mapper class="com.tuling.mybatis.dao.UserMapper"></mapper>
    </mappers>
</configuration>

代码实例

String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
SqlSession session = sqlSessionFactory.openSession();
User result = session.selectOne("com.tuling.mybatis.dao.UserMapper.selectUser", 1);
System.out.println(result.toString());

SqlSessionFactoryBuilder

用于构建会话工厂,基于 config.xml environment 、props 构建会话工厂,构建完成后即可丢弃。

SqlSessionFactory

用于生成会话的工厂,作用于整个应用运行期间,一般不需要构造多个工厂对象

SqlSession


作用于单词会话,如 web 一次请求期间,不能用作于某个对象属性,也不能在多个线程间共享,因为它是线程不安全的。

2. 接口式编程

由于每次调用时都去找对应用 statement 以及拼接参数,使用上不上不是特别友好,Mybatis 引入了接口的机制,将接口与Mapper.xml 的 namespace 名称绑定,Mybatis 就可以 根据ASM工具构建该接口的实例。

mapper映射器接口实例

通过session.getMapper(Class type) 就可以获取 mapper 实例,该实例一般作用于方法域。

二、全局的 configuration 配置

属性

properties 元素可以通过 resource 或url 加载外部 properties文件中的属性,也可以直接设置property 属性。然后在xml 中就可以通过${属性名}进行引用替换。


<properties resource="app.properties" url="">
        <property name="jdbc.driver" value="com.oracle.jdbc.Driver"/>
</properties>

resource= app.properties 从class path中加载 url=file:///G:/git/tuling-mybatis/src/main/resources/app.properties 基于url加载

引用属性方式: ${jdbc.user}
从 MyBatis 3.4.2 开始,位符指定一个默认值。例如:${jdbc.user:root}

环境配置

一个项目经常需要在例如开发坏境、测试环境、预演环境、生产环境中等不同环境中进行部署,每个环境所对应的参数是不一样的,myBatis 中可以通过 environment 来设置不同环境的属性。

 <environments default="${default.environment}">
        <environment id="test">
            <!--type=JDBC|MANAGED-->
            <transactionManager type="JDBC"></transactionManager>
            <!-- type=UNPOOLED|POOLED|JNDI-->
            <dataSource type="UNPOOLED">
                <property name="driver" value="${jdbc.driver}"/>
            </dataSource>
        </environment>
        <environment id="dev">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="${jdbc.driver}"/>
            </dataSource>
        </environment>
    </environments>

可通过 SqlSessionFactoryBuilder.build( environment) 来指定初始化哪套环境。

设置

设置MyBatis 全局参数,约定myBatis 的全局行为

<settings>
<!-- 开启二级缓存-->
  <setting name="cacheEnabled" value="true"/>
  <!-- 开启驼峰命名适配-->
  <setting name="mapUnderscoreToCamelCase" value="true"/>
<settings>

示例驼峰命名开启与关闭:

  • 尝试开关 mapUnderscoreToCamelCase 属性 来观察Account 数据查询情况。

别名

在myBatis 中经常会用到 java 中类型,如sql 块中中 parameterType 参数引用中 javaType 结果集映射的javaType ,都要使用java 全路径名,可以通过

<typeAliases>
    <typeAlias type="com.tuling.mybatis.dao.Account" alias="account"/>
    <package name="com.tuling.mybatis.dao"  />
</typeAliases>

提示:建议不要设置。因为常用的类 mybatis 已经内置别名,而自定义的类设置别反而不好去找,影响阅读。

类型处理器

持久层框架其中比较重要的工作就是处理数据的映射转换,把java 类型转换成jdbc 类型的参数,又需要把jdbc 类型的结果集转换成java 类型。在mybatis 中是通过 TypeHandler 接口来实现的。

image.png
可以看到 typeHandler 就是两个作用 设置参数 与获取结果。 你可以设置自定义处理器

<typeHandlers>
  <typeHandler handler="org.mybatis.example.ExampleTypeHandler"  />
</typeHandlers>

可以通过以下两种方式指定处理的范围

  • javaType=”long”, jdbcType=”Date”
  • @MappedJdbcTypes( jdbc类型) @MappedTypes java类型

示例: long 类型时间戳转换成 日期类型

添加算定义处理类:

@MappedJdbcTypes(JdbcType.TIMESTAMP)
@MappedTypes(Long.class)
public class LongTimeHandler extends BaseTypeHandler<Long> {
    @Override
    public void setNonNullParameter(PreparedStatement ps, int i, Long parameter, JdbcType jdbcType) throws SQLException {
        ps.setDate(i, new Date(parameter));
    }

    @Override
    public Long getNullableResult(ResultSet rs, String columnName) throws SQLException {
        return rs.getDate(columnName).getTime();
    }

    @Override
    public Long getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
        return rs.getDate(columnIndex).getTime();
    }

    @Override
    public Long getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
        return cs.getDate(columnIndex).getTime();
    }
}

在resultMap中指定 typeHandler:

<resultMap id="account2" type="com.tuling.mybatis.dao.Account">
      <result property="createTimestamp" column="createTimestamp"
              typeHandler="com.tuling.mybatis.dao.LongTimeHandler"/>
  </resultMap>
  <select id="selectById2" resultMap="account2">
  select a.*,a.createTime as createTimestamp from account a where id = #{id}
</select>

Mapper 映射器

<mappers>
  <mapper resource="org/mybatis/builder/AuthorMapper.xml"/>
  <mapper  url="http://www.xxx.com/xml/BlogMapper.xml"/>
  <mapper class="org.mybatis.builder.BlogMapper"/>
 <package name="org.mybatis.builder"/>
</mappers>

加载方式:

  • resource 基于classPath 加载xml文件
  • url:基于资源定位加载xml 文件
  • class:基于接口加载
  • package :扫描包下所有class 然后进行加载

约定规则:

  • mapper 中的 namespace必须与对应的接口名称对应。
  • 通过 class 或package 中加载时 .xml 文件必须与接口在同一级目录。

三 、Mapper文件

Sql 语句块statement

通过原生JDBC写DAO的年代 ,程序员最怕莫过于 拼接SQL语句,拼接参数与设置返回结果集,Hibernate 将拼接SQL时代成为过去,通过ORM映谢,完全不需要处理任何SQL,但这又带来了新的问题就是。无法编写自定义SQL从而丧失了灵活活及更好的性能。MyBatis 通过 mapper 映射SQL很好解决了这一点。它无需在JAVA代码中拼接SQL,而是将其移至mapper 文件集中处理SQL节约了大量的开发时间。

Mapper中的元素:

  • cache – 对给定命名空间的缓存配置。
  • resultMap – 结果集映射。 sql – 可被其他语句引用的可重用语句块。
  • insert – 插入语句
  • update – 更新语句
  • delete –删除语句
  • select – 查询语句

select 用法及属性

示例:
<select id="selectById" resultType="com.tuling.mybatis.dao.Account">
  select * from account where id = #{id}
</select>
属性:
<select
  id="selectById"        <!-- 语句块的唯一标识 与接口中方法名称对应 -->
  parameterType="User"   <!--参数java类型-->
  resultType="hashmap"   <!--返回结果java类型-->
  resultMap="userResultMap" <!--返回结果映射-->
  flushCache="false"      <!--true 每次调用都会刷新 一二级缓存-->
  useCache="true"         <!--true 是否保存至二级缓存当中去-->
  timeout="10"
  statementType= PREPARED">

insert&update&delete 用法

<insert
  id="addUser"   <!-- 语句块的唯一标识 与接口中方法名称对应 -->
  parameterType="User"   <!--参数java类型-->
  flushCache="true"  <!--true 每次调用都会刷新 一二级缓存-->
  statementType="PREPARED" <执行类型>
  keyProperty=""      <!--主键对应的java 属性,多个用 逗号分割-->
  keyColumn=""        <!--主键列,多个用 逗号分割-->
  useGeneratedKeys=""  <!--插入成功后将 将值回设至 原参数->
  timeout="20">
示例:
<insert id="addUser" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
        parameterType="com.tuling.mybatis.dao.User">
    insert into  user (name,updateTime,createTime) values (#{name},#{updateTime},#{createTime})
</insert>

参数映射

参数映射是最强大功能之一,基可以通过以下方式进行引用 单个简单参数引用 :如果方法中只有一个参数可通过任意名称 进行引用

  • 多个简单参数引用:通过参数下标引用 #{arg0} #{arg1} 或 #{param1} ,#{param2}
  • 对像属性引用: 直接通过对象属性名称引用,嵌套对像通过. 号进行引用
  • map key值引用:
  • 变量名称引用(需要jdk1.8支持) :通过方法中参数名称引用,需要jdk1.8支持,且在编译时必须加上 -parameters 编译命令

在idea 中添加 编译参数
image.png

在maven中添加 编译参数

image.png

注:一但可通过变量名称引入不在支持arg0获取! 参数引用 相关属性

javaType=int, #参数java类型
jdbcType=NUMERIC,# jdbc类型
typeHandler=MyTypeHandler# 指定类型处理器

参数拼接${}

基于#的参数引用 其原理是通过 ?占位其通过预处理能获得更好的性能 和安全性(防止SQL注入)但有些需求是通过?占位无法实现的,比如在一些分库分表的场景中我们需要 动态的拼接表结构。

比如某系统日志表是按年进行切割的 2018_systemlog,2019_systemlog这时就可以通过
示例:
@Select(“SELECT * FROM ${table} WHERE id = #{id}”)
User selectByTable(String table, int id);

结果集映射

结果集映射是指 将resultSet 中内容封装转换成java对像,在纯jdbc时代全部都是用调用resultSet的getXXX(columnName) 来获取属性并封装。

代码量大,编程效率低尤其当数据模型是1对多,或多对多这种复杂关系,这种封装代码将会变得非常复杂。结果集映射就是为解决这个问题 通过resultMap 集中处理 结果集与JAVA对像的关系。

结果集自动映射

在select 中指定 resultType=“” 后无需要任何配置 myBatis 会基于 resultType中的JAVa类型及属性自动推断生成 一个隐示的resultMap 从而完成结果映谢

resultMap 但有时jdbc 并不是与java Bean 完全贴合这时就需要手动设置resultMap

<resultMap id="account2" type="com.tuling.mybatis.dao.Account">
    <id property="id"/>
    <result property="createTimestamp" column="createTimestamp"
            typeHandler="com.tuling.mybatis.dao.LongTimeHandler"/>
</resultMap>

这时在select元素中用 resultMap =”account2” 即可引用该map映射。

基本元素与属性

  • ID:用于结果集中的唯一标识
  • result:设置一个某通过字段

property:
jdbcType:
javaType:
column:
typeHandler:

嵌套结果映射 关联 association

<resultMap id="accountAndUser" type="com.tuling.mybatis.dao.Account">
    <id property="id" column="id"/>
    <association property="user" javaType="com.tuling.mybatis.dao.User">
        <id property="id" column="user_id"/>
        <result property="name" column="userName"/>
    </association>
</resultMap>

<select id="selectAccountAndUser" resultMap="accountAndUser">
    SELECT a.*, b.name userName from account a,user b where a.user_id=b.id
</select>

引入外部Select

<!--基于多次查询拼装引入 -->
<resultMap id="accountAndUser2" type="com.tuling.mybatis.dao.Account">
    <id property="id" column="id"/>
    <association property="user" javaType="com.tuling.mybatis.dao.User" select="selectUser"
                 column="user_id">
    </association>
</resultMap>

<select id="selectUser" resultType="com.tuling.mybatis.dao.User">
    select * from user  where id = #{id}
</select>