https://mybatis.org/mybatis-3/zh/configuration.html
https://www.w3cschool.cn/mybatis/mybatis-dyr53b5w.html
https://mybatis.org/mybatis-3/zh/getting-started.html

Mybatis

构建项目

导入环境

在Maven中导入jar

  1. <dependency>
  2. <groupId>org.mybatis</groupId>
  3. <artifactId>mybatis</artifactId>
  4. <version>3.5.5</version>
  5. </dependency>

Mybatis环境配置

  • mybatis-config.xml
    • mybatis全局配置文件
  • XXXmapper.xml
    • sql映射配置文件

MyBatis 可以配置成适应多种环境,但每个 SqlSessionFactory 实例只能选择一种环境。

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE configuration
  3. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-config.dtd">
  5. <configuration>
  6. <!-- 数据库配置文件 -->
  7. <properties resource="db.properties"/>
  8. <!-- 映射实体类 -->
  9. <typeAliases>
  10. <package name="cn.landsall.entity"/>
  11. </typeAliases>
  12. <!-- 配置环境 -->
  13. <environments default="development">
  14. <!-- default指定默认环境 -->
  15. <environment id="development">
  16. <!-- 配置事务管理器 -->
  17. <!-- 在Spring环境下会被覆盖 -->
  18. <transactionManager type="JDBC"/>
  19. <!-- 配置数据源 -->
  20. <dataSource type="POOLED">
  21. <!-- 通过${}动态获取值 -->
  22. <property name="driver" value="${driver}"/>
  23. <property name="url" value="${url}"/>
  24. <property name="username" value="${username}"/>
  25. <property name="password" value="${password}"/>
  26. </dataSource>
  27. </environment>
  28. </environments>
  29. <!-- 映射sql语句 -->
  30. <mappers>
  31. <!-- 将包内的映射器接口实现全部注册为映射器 -->
  32. <package name="cn.landsall.dao"/>
  33. </mappers>
  34. </configuration>

创建Mapper接口

image.png

映射sql

  • 通过注解

image.png

  • 通过xml ```xml <?xml version=”1.0” encoding=”UTF-8” ?> <!DOCTYPE mapper
    1. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
    2. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

  1. <a name="vRiW2"></a>
  2. ## 构建SqlSessionFactory
  3. `SqlSessionFactory` 由 `SqlSessionFactoryBuilder` 获得,用于创建SqlSession对象,整个项目只需创建一次<br />`SqlSessionFactoryBuilder` 则可以从 XML 配置文件或一个预先配置的 Configuration 实例来构建出 SqlSessionFactory 实例<br />`SqlSession` 相当于 Connection 每一次交互都应该创建一次
  4. <a name="106a0"></a>
  5. ### 通过读取xml配置文件
  6. ![image.png](https://cdn.nlark.com/yuque/0/2020/png/1561124/1601983692845-354e75b1-c959-4747-9d68-38c8bb97558d.png#align=left&display=inline&height=475&margin=%5Bobject%20Object%5D&name=image.png&originHeight=949&originWidth=1533&size=1312216&status=done&style=none&width=766.5)
  7. <a name="EU850"></a>
  8. # XML配置
  9. <a name="UWeim"></a>
  10. ## 属性(properties)
  11. 属性可以在外部进行配置,并可以进行**动态替换**。你既可以在典型的** Java 属性文件**中配置这些属性,也可以在 **properties 元素的子元素**中设置
  12. ```xml
  13. <properties resource="org/mybatis/example/config.properties">
  14. <property name="username" value="dev_user"/>
  15. <property name="password" value="F2Fa3!33TYyg"/>
  16. </properties>

设置好的属性可以在整个配置文件中用来替换需要动态配置的属性值

  1. <dataSource type="POOLED">
  2. <property name="driver" value="${driver}"/>
  3. <property name="url" value="${url}"/>
  4. <property name="username" value="${username}"/>
  5. <property name="password" value="${password}"/>
  6. </dataSource>

也可以在 SqlSessionFactoryBuilder.build() 方法中传入属性值。

  1. SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, props);
  2. // ... 或者 ...
  3. SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, environment, props);

属性加载顺序

properties 元素体内指定的属性 -> resource 属性读取类路径下的属性文件 -> 方法参数传递的属性

占位符默认值

从 MyBatis 3.4.2 开始,你可以为占位符指定一个默认值

  1. <dataSource type="POOLED">
  2. <!-- ... -->
  3. <property name="username" value="${username:ut_user}"/>
  4. <!-- 如果属性 'username' 没有被配置,'username' 属性的值将为 'ut_user' -->
  5. </dataSource>

这个特性默认是关闭的。要启用这个特性,需要添加一个特定的属性来开启这个特性

  1. <properties resource="org/mybatis/example/config.properties">
  2. <!-- 启用默认值特性 -->
  3. <property name="org.apache.ibatis.parsing.PropertyParser.enable-default-value" value="true"/>
  4. <!-- 修改默认值的分隔符 默认为: -->
  5. <property name="org.apache.ibatis.parsing.PropertyParser.default-value-separator" value="?:"/>
  6. </properties>

设置(settings)

https://mybatis.org/mybatis-3/zh/configuration.html#settings

常用

设置名 描述 有效值 默认值
mapUnderscoreToCamelCase 是否开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn。 true | false False
logImpl 指定MyBatis应该使用哪种日志记录实现。如果不存在此设置,则将自动发现日志记录实现。 SLF4J | LOG4J | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING 没有设置

类型别名(typeAliases)

类型别名可为 Java 类型设置一个缩写名字。 它仅用于 XML 配置,意在降低冗余的全限定类名书写。

  1. <!-- mybatis-config.xml 中 -->
  2. <typeAliases>
  3. <!-- 指定类的别名 -->
  4. <typeAlias alias="Author" type="domain.blog.Author"/>
  5. <!-- 指定实体类的包 -->
  6. <package name="domain.blog"/>
  7. </typeAliases>

在没有注解的情况下,包中的类会使用 Bean 的首字母小写的非限定类名来作为它的别名

类型处理器(typeHandlers)

MyBatis 在设置预处理语句(PreparedStatement)中的参数或从结果集中取出一个值时, 都会用类型处理器将获取到的值以合适的方式转换成 Java 类型

自定义类型处理器

  1. // ExampleTypeHandler.java
  2. @MappedJdbcTypes(JdbcType.VARCHAR)
  3. public class ExampleTypeHandler extends BaseTypeHandler<String> {
  4. @Override
  5. public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) throws SQLException {
  6. ps.setString(i, parameter);
  7. }
  8. @Override
  9. public String getNullableResult(ResultSet rs, String columnName) throws SQLException {
  10. return rs.getString(columnName);
  11. }
  12. @Override
  13. public String getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
  14. return rs.getString(columnIndex);
  15. }
  16. @Override
  17. public String getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
  18. return cs.getString(columnIndex);
  19. }
  20. }
  1. <!-- mybatis-config.xml -->
  2. <typeHandlers>
  3. <typeHandler handler="org.mybatis.example.ExampleTypeHandler"/>
  4. </typeHandlers>
  • 指定类型处理器处理的 Java 类型
    • 添加**javaType**属性
      • javaType=”String”
    • 添加@MappedJdbcTypes注解
      • JdbcType.VARCHAR
  • 指定关联的 JDBC 类型
    • 添加jdbcType属性
    • 添加@MappedJdbcTypes 注解
  • 属性上的配置会覆盖注解上的配置

    泛型类型处理器

    1. //GenericTypeHandler.java
    2. public class GenericTypeHandler<E extends MyObject> extends BaseTypeHandler<E> {
    3. private Class<E> type;
    4. public GenericTypeHandler(Class<E> type) {
    5. if (type == null) throw new IllegalArgumentException("Type argument cannot be null");
    6. this.type = type;
    7. }
    8. ...

    对象工厂(objectFactory)

    https://mybatis.org/mybatis-3/zh/configuration.html#objectFactory

    插件(plugins)

    https://mybatis.org/mybatis-3/zh/configuration.html#plugins

    映射器(mappers)

    指定映射文件的位置

  1. <!-- 使用相对于类路径的资源引用 -->
  2. <mappers>
  3. <mapper resource="org/mybatis/builder/AuthorMapper.xml"/>
  4. <mapper resource="org/mybatis/builder/BlogMapper.xml"/>
  5. <mapper resource="org/mybatis/builder/PostMapper.xml"/>
  6. </mappers>
  7. <!-- 使用完全限定资源定位符(URL) -->
  8. <mappers>
  9. <mapper url="file:///var/mappers/AuthorMapper.xml"/>
  10. <mapper url="file:///var/mappers/BlogMapper.xml"/>
  11. <mapper url="file:///var/mappers/PostMapper.xml"/>
  12. </mappers>
  13. <!-- 使用映射器接口实现类的完全限定类名 -->
  14. <mappers>
  15. <mapper class="org.mybatis.builder.AuthorMapper"/>
  16. <mapper class="org.mybatis.builder.BlogMapper"/>
  17. <mapper class="org.mybatis.builder.PostMapper"/>
  18. </mappers>
  19. <!-- 将包内的映射器接口实现全部注册为映射器 -->
  20. <mappers>
  21. <package name="org.mybatis.builder"/>
  22. </mappers>
  • 使用接口注册需要把mapper.xml文件放置于接口同一个包的路径下,且文件名相同,才能识别xml配置

resource文件夹下的路径名与包名一致,项目输出时会生成在对应包名下
image.png
image.png

XML映射

https://mybatis.org/mybatis-3/zh/sqlmap-xml.html

sql

这个元素可以用来定义可重用的 SQL 代码片段,以便在其它语句中使用。 参数可以静态地(在加载的时候)确定下来,并且可以在不同的 include 元素中定义不同的参数值

  1. <sql id="userColumns"> ${alias}.id,${alias}.username,${alias}.password </sql>
  2. <select id="selectUsers" resultType="map">
  3. select
  4. <include refid="userColumns"><property name="alias" value="t1"/></include>,
  5. <include refid="userColumns"><property name="alias" value="t2"/></include>
  6. from some_table t1
  7. cross join some_table t2
  8. </select>
  9. 等于
  10. <select id="selectUsers" resultType="map">
  11. select
  12. t1.id,t1.username,t1.password,
  13. t2.id,t2.username,t2.password
  14. from some_table t1
  15. cross join some_table t2
  16. </select>

参数

  • mybatis会自动映射基本数据类型,无需指定parameterType

    1. <select id="selectUsers" resultType="User">
    2. select id, username, password
    3. from users
    4. where id = #{id}
    5. </select>
  • 复杂Java对象,基于OGNL表达式插入对应属性

    1. <insert id="insertUser" parameterType="User">
    2. insert into users (id, username, password)
    3. values (#{id}, #{username}, #{password})
    4. </insert>

    JDBC 要求,如果一个列允许使用 null 值,并且会使用值为 null 的参数,就必须要指定 JDBC 类型(jdbcType)
    #{realname,jdbcType=VARCHAR}
    完整的类型处理配置
    #{age,javaType=int,jdbcType=NUMERIC,typeHandler=MyTypeHandler}

    字符串替换

    #{} 会创建占位符?
    ${} 插入不转义的字符串 — 常用于替换表名列名

    1. @Select("select * from user where ${column} = #{value}")
    2. User findByColumn(@Param("column") String column, @Param("value") String value);

    其中 ${column} 会被直接替换,而 #{value} 会使用 ? 预处理。

结果映射(resultMap)

隐式映射

  1. <select id="selectUsers" resultType="com.someapp.model.User">
  2. select id, username, hashedPassword
  3. from some_table
  4. where id = #{id}
  5. </select>
  6. 隐式映射了如下resultMap
  7. <resultMap id="userResultMap" type="User">
  8. <id property="id" column="id" />
  9. <result property="username" column="username"/>
  10. <result property="password" column="password"/>
  11. </resultMap>

显式映射

  1. Java类中的property映射到数据库查询结果的column
  2. <resultMap id="userResultMap" type="User">
  3. <id property="id" column="user_id" />
  4. <result property="username" column="user_name"/>
  5. <result property="password" column="hashed_password"/>
  6. </resultMap>
  7. <select id="selectUsers" resultMap="userResultMap">
  8. select user_id, user_name, hashed_password
  9. from some_table
  10. where id = #{id}
  11. </select>

动态SQL

if

常用于模糊查询where语句

  1. <select id="findActiveBlogWithTitleLike"
  2. resultType="Blog">
  3. SELECT * FROM BLOG
  4. WHERE state = ‘ACTIVE’
  5. <if test="title != null">
  6. AND title like #{title}
  7. </if>
  8. </select>

choose、when、otherwise

  1. <select id="findActiveBlogLike"
  2. resultType="Blog">
  3. SELECT * FROM BLOG WHERE state = ‘ACTIVE’
  4. <choose>
  5. <when test="title != null">
  6. AND title like #{title}
  7. </when>
  8. <when test="author != null and author.name != null">
  9. AND author_name like #{author.name}
  10. </when>
  11. <otherwise>
  12. AND featured = 1
  13. </otherwise>
  14. </choose>
  15. </select>

where

where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。
而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们清除。

  1. <select id="findActiveBlogLike"
  2. resultType="Blog">
  3. SELECT * FROM BLOG
  4. <where>
  5. <if test="state != null">
  6. state = #{state}
  7. </if>
  8. <if test="title != null">
  9. AND title like #{title}
  10. </if>
  11. <if test="author != null and author.name != null">
  12. AND author_name like #{author.name}
  13. </if>
  14. </where>
  15. </select>

set

去点 , 后缀

  1. <update id="updateAuthorIfNecessary">
  2. update Author
  3. <set>
  4. <if test="username != null">username=#{username},</if>
  5. <if test="password != null">password=#{password},</if>
  6. <if test="email != null">email=#{email},</if>
  7. <if test="bio != null">bio=#{bio}</if>
  8. </set>
  9. where id=#{id}
  10. </update>

trim

prefix 和 suffix 会在有内容返回时添加前缀和后缀
prefixOverrides 和 suffixOverrides 会在语句前后把指定内容清除,多个内容用|隔开
eg: 类似where的功能

  1. <trim prefix="WHERE" prefixOverrides="AND |OR ">
  2. ...
  3. </trim>

eg:类似set

  1. <trim prefix="SET" suffixOverrides=",">
  2. ...
  3. </trim>

foreach

collection:集合
item:集合项
index:当前迭代的序号
open:开头的字符串
separator:间隔元素之间的字符串
end:结尾的字符串

  • foreach可以迭代list,set,map和数组对象
  • 当迭代Map时,index,item分别是键和值
    1. <select id="selectPostIn" resultType="domain.blog.Post">
    2. SELECT *
    3. FROM POST P
    4. WHERE ID in
    5. <foreach item="item" index="index" collection="list"
    6. open="(" separator="," close=")">
    7. #{item}
    8. </foreach>
    9. </select>

    bind

    bind 元素允许你在 OGNL 表达式以外创建一个变量,并将其绑定到当前的上下文
    1. <select id="selectBlogsLike" resultType="Blog">
    2. <bind name="pattern" value="'%' + _parameter.getTitle() + '%'" />
    3. SELECT * FROM BLOG
    4. WHERE title LIKE #{pattern}
    5. </select>

MyBatis CRUD

查询

image.png

增删改

image.png
image.pngp

  • parameterType
    • 基本数据类型
      • 包名可以不为完全限定名
      • Integer or int or java.lang.String
    • 参数只有一个
      • {name}为占位符,参数名任意,但不能为空

image.png

多行插入

  1. <insert id="insertUserList" parameterType="list" useGeneratedKeys="true">
  2. insert into user (username, password, realname, mobile, age) values
  3. <foreach collection="list" item="item" separator=",">
  4. (#{item.username},#{item.password},#{item.realname},#{item.mobile},#{item.age})
  5. </foreach>
  6. </insert>

模糊查询

  1. 在传参数时手动传入%% — 内部使用PreStatement
  2. 使用${value} — 内部使用Statement

image.png
value名称固定

SelectKey

  • order = “BEFORE”
    • 插入前(类似数据库自动生成主键)
  • order = “AFTER”
    • 插入后(获取数据库自动生成的值)

设置值

image.png
image.png
语句执行后,自动增长的id值会被赋值给user (使用代替useGeneratedKeys=”true” keyProperty=”id”)

分页

https://www.w3cschool.cn/mybatis/mybatis-8n4d3bpg.html


缓存

mybatis的缓存分为两级:一级缓存、二级缓存
https://www.w3cschool.cn/mybatis/mybatis-xlc73bt4.html
https://mybatis.org/mybatis-3/sqlmap-xml.html#cache

一级缓存

一级缓存为 sqlsesson 缓存,缓存的数据只在 SqlSession 内有效。在操作数据库的时候需要先创建 SqlSession 会话对象,在对象中有一个 HashMap 用于存储缓存数据,此 HashMap 是当前会话对象私有的,别的 SqlSession 会话对象无法访问。

  • mybatis 默认是开启一级缓存

    一级缓存失效的情况

  • 不同的SqlSession对应不同的一级缓存

  • 同一个SqlSession但是查询条件不同
  • 同一个SqlSession两次查询期间执行了任何一次增删改操作
  • 同一个SqlSession两次查询期间手动清空了缓存 openSession.clearcache()

二级缓存:

二级缓存是 mapper 级别的缓存,也就是同一个 namespace 的 mappe.xml ,当多个 SqlSession 使用同一个 Mapper 操作数据库的时候,得到的数据会缓存在同一个二级缓存区域

  • 在sqlSession关闭后才会产生二级缓存
  • 二级缓存非只读对象需要实现序列化接口
  • Mybatis会先查询二级缓存

    开启二级缓存

  • mybatis-config.xml

    1. <settings>
    2. <setting name="cacheEnabled" value="true"/>
    3. <settings>
  • Mapper.xml

    1. <mapper>
    2. <cache eviction="LRU" flushInterval="60000" size="512" readOnly="true"/>
    3. </mapper>
    4. 清除缓存的策略为LRU
    5. 当前mapper下所有语句开启二级缓存
    6. 每隔60秒刷新,最大存储512个对象,而返回的对象是只读的

    只读:对象不需要实现序列化接口,且性能较好
    非只读:对象需要实现序列化接口,性能较差,但安全

  • 如果要禁用某一个语句的二级缓存

    1. <select id="getCountByName" useCache="false">

其他

mybastis 映射Java类属性不区分大小写