1. mapper介绍
    1. mapper使用规则:按业务划分,一个业务模块相关的sql均定义在一个mapper文件
    2. mapper的xml格式:
      1. doctype:

        • <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
          "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
      2. 使用mapper标签包含:
        • <mapper namespace="com.pro.dao.UserDao"></mapper>
          
  2. mapper概览
    • cache:指定名称的缓存
    • cache-ref:引用其他文件的命名配置
    • resultMap:描述如何加载数据库结果的对象
    • sql:可重用的sql块,也可以被其他语句使用
    • insert:插入
    • update:更新
    • delete:删除
    • select:查询  
  3. 使用介绍
    1. select标签

      <select
      id="selectPerson" //唯一标识sql语句,与接口中的标识一致。
      parameterType="int"//入参类型
      resultType="hashmap"//期望返回类型的类名或别名,集合时,应该是集合可以包含的类型,而不能是集合本身
      resultMap="personResultMap"//引用resultMap标签定义
      flushCache="false"//设置为true,清空缓存
      useCache="true"//使用cache:本条结果将被缓存
      timeout="10000"
      fetchSize="256"
      statementType="PREPARED"//Statement,PreparedStatement 或 CallableStatement。 默认值:PREPARED
      resultSetType="FORWARD_ONLY">//FORWARD_ONLY|SCROLL_SENSITIVE|SCROLL_INSENSITIVE 中的一种。默认是不设置(驱动自行处理)。 多表查询:
      <!-- Very Complex Statement -->
      <select id="selectBlogDetails" resultMap="detailedBlogResultMap">
      select
      B.id as blog_id,
      B.title as blog_title,
      B.author_id as blog_author_id,
      A.id as author_id,
      A.username as author_username,
      A.password as author_password,
      A.email as author_email,
      A.bio as author_bio,
      A.favourite_section as author_favourite_section,
      P.id as post_id,
      P.blog_id as post_blog_id,
      P.author_id as post_author_id,
      P.created_on as post_created_on,
      P.section as post_section,
      P.subject as post_subject,
      P.draft as draft,
      P.body as post_body,
      C.id as comment_id,
      C.post_id as comment_post_id,
      C.name as comment_name,
      C.comment as comment_text,
      T.id as tag_id,
      T.name as tag_name
      from Blog B
      left outer join Author A on B.author_id = A.id
      left outer join Post P on B.id = P.blog_id
      left outer join Comment C on P.id = C.post_id
      left outer join Post_Tag PT on PT.post_id = P.id
      left outer join Tag T on PT.tag_id = T.id
      where B.id = #{id}
      </select>
    2. insert、update、delete标签
      • <insert id="insertAuthor"//唯一标签,与接口中的方法名称一致 parameterType="domain.blog.Author"//参数类型,限定名 flushCache="true" statementType="PREPARED" keyProperty="" keyColumn="" useGeneratedKeys="" timeout="20">
      • selectKey:selectKey 元素将会首先运行, id 会被设置,然后插入语句 会被调用
        <insert id="insertAuthor">
        <selectKey keyProperty="id" resultType="int" order="BEFORE">
        select CAST(RANDOM()*1000000 as INTEGER) a from SYSIBM.SYSDUMMY1
        </selectKey>
        insert into Author
        (id, username, password, email,bio, favourite_section)
        values
        (#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
        </insert>
    3. sql标签
      • 这个元素可以被用来定义可重用的 SQL 代码段,可以包含在其他语句中
      • <sql id="userColumns"> id,username,password </sql>
        <select id="selectUsers" resultType="map">
        select <include refid="userColumns"/>
        from some_table
        where id = #{id}
        </select>
        <insert id="insertUser" parameterType="User">
          insert into users (id, username, password) values (#{id}, #{username}, #{password})
        </insert>
    4. resultMap标签
      • 结果映射定义:
      • constructor - 类在实例化时,用来注入结果到构造方法中
        • idArg - ID 参数;标记结果作为 ID 可以帮助提高整体效能
        • arg - 注入到构造方法的一个普通结果
      • id – 一个 ID 结果;标记结果作为 ID 可以帮助提高整体效能
      • result – 注入到字段或 JavaBean 属性的普通结果
      • association – 一个复杂的类型关联;许多结果将包成这种类型
        • 嵌入结果映射 – 结果映射自身的关联,或者参考一个
        • has a关系:
        • 关联元素处理“有一个”类型的关系。
          
        • <resultMap id="blogResult" type="Blog">
          <id property="id" column="blog_id" />
          <result property="title" column="blog_title"/>
          <association property="author" column="blog_author_id" javaType="Author" resultMap="authorResult"/>
          </resultMap> <resultMap id="authorResult" type="Author">
          <id property="id" column="author_id"/>
          <result property="username" column="author_username"/>
          <result property="password" column="author_password"/>
          <result property="email" column="author_email"/>
          <result property="bio" column="author_bio"/>
          </resultMap> <select id="selectBlog" resultMap="blogResult">
          select
          B.id as blog_id,
          B.title as blog_title,
          B.author_id as blog_author_id,
          A.id as author_id,
          A.username as author_username,
          A.password as author_password,
          A.email as author_email,
          A.bio as author_bio
          from Blog B left outer join Author A on B.author_id = A.id
          where B.id = #{id}
          </select>
      • collection – 复杂类型的集
        • 嵌入结果映射 – 结果映射自身的集,或者参考一个
      • discriminator – 使用结果值来决定使用哪个结果映射case – 基于某些值的结果映射
        • 嵌入结果映射 – 这种情形结果也映射它本身,因此可以包含很多相 同的元素,或者它可以参照一个外部的结果映射。
    5. Cache标签
      • <cache/>

        字面上看就是这样。这个简单语句的效果如下:

        • 映射语句文件中的所有 select 语句将会被缓存。
        • 映射语句文件中的所有 insert,update 和 delete 语句会刷新缓存。
        • 缓存会使用 Least Recently Used(LRU,最近最少使用的)算法来收回。
        • 根据时间表(比如 no Flush Interval,没有刷新间隔), 缓存不会以任何时间顺序 来刷新。
        • 缓存会存储列表集合或对象(无论查询方法返回什么)的 1024 个引用。
        • 缓存会被视为是 read/write(可读/可写)的缓存,意味着对象检索不是共享的,而 且可以安全地被调用者修改,而不干扰其他调用者或线程所做的潜在修改。

        所有的这些属性都可以通过缓存元素的属性来修改。比如:

        <cache
        eviction="FIFO"
        flushInterval="60000"
        size="512"
        readOnly="true"/>

mybatis--mapper配置总结的更多相关文章

  1. mybatis mapper配置

    <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC ...

  2. Mybatis中配置Mapper的方法

    在这篇文章中我主要想讲一下Mybatis配置文件中mappers元素的配置.关于基础部分的内容可以参考http://haohaoxuexi.iteye.com/blog/1333271. 我们知道在M ...

  3. MyBatis—mapper.xml映射配置

    SQL文件映射(mapper文件),几个顶级元素的配置: mapper元素:根节点只有一个属性namespace(命名空间)作用: 1:用于区分不同的mapper,全局唯一. 2:绑定DAO接口,即面 ...

  4. mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?

    mybatis mapper xml文件配置resultmap时,id行和result行有什么区别? <resultMap id = "CashInvoiceMap" typ ...

  5. MyBatis工程搭建&MyBatis实现Mapper配置查询

    一.MyMyBatis工程搭建 新建Maven项目:mybatis-demo 准备数据源 1 # 删除mybatis_demo数据库 2 drop database if exists mybatis ...

  6. Mybatis XML配置

    Mybatis常用带有禁用缓存的XML配置 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE ...

  7. MyBatis Cache配置

    @(MyBatis)[Cache] MyBatis Cache配置 MyBatis提供了一级缓存和二级缓存 配置 全局配置 配置 说明 默认值 可选值 cacheEnabled 全局缓存的开关 tru ...

  8. mybatis mapper.xml 配置文件问题(有的错误xml是不报的) 导致服务无法启动 。

    转载自 开源编程 一舟mybatsi xml编译报错,tomcat启动一直循环,导致内存溢出,启动失败 mapper.xml怎么知道有没有编译错误,哪个位置有错误 这应该是mybatis的一个bug, ...

  9. spring和mybatis整合配置

    <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.sp ...

  10. SSM ( Spring 、 SpringMVC 和 Mybatis )配置详解

    使用 SSM ( Spring . SpringMVC 和 Mybatis )已经有三个多月了,项目在技术上已经没有什么难点了,基于现有的技术就可以实现想要的功能,当然肯定有很多可以改进的地方.之前没 ...

随机推荐

  1. 28_java之mysql的CRUD

    01数据库概念 * A: 什么是数据库 数据库就是存储数据的仓库,其本质是一个文件系统,数据按照特定的格式将数据存储起来,用户可以对数据库中的数据进行增加,修改,删除及查询操作. * B: 什么是数据 ...

  2. JavaScript知识总结--历史-html引用方式-基础概念

    一.JavaScript简介 1.ECMAScript 1995~今已经20年的历史,产生JavaScript是需要它去解决一定的问题:在浏览器端做一些数据的验证,试想当年的网络环境,如果能够在浏览器 ...

  3. 分环境部署SpringBoot日志logback-spring.xml

    springboot按照profile进行打印日志 log4j logback slf4j区别? 首先谈到日志,我们可能听过log4j logback slf4j这三个名词,那么它们之间的关系是怎么样 ...

  4. rtmp一些状态信息详解-as连接FMS服务器报错状态汇总~~

    原地址:http://help.adobe.com/zh_CN/AIR/1.5/jslr/flash/events/NetStatusEvent.html 下表说明了 code 和 level 属性可 ...

  5. Node.js版-七夕无事,人艰勿拆,求别说...

    七夕无事,端坐电脑前coding,略苦逼,人艰勿拆,求别说...

  6. Excel VBA 获取按钮对象

    今天给同事写了两个VBA宏,并分别把宏赋给了两个按钮. 因为两个宏都是实现在两种显示方式之间切换,于是我想除了功能的实现外,还希望在切换到其中一种方式时,按钮上面的文字也可以跟着改变,起到提示作用. ...

  7. Spark之 SparkSql、DataFrame、DataSet介绍

    SparkSql SparkSql是专门为spark设计的一个大数据仓库工具,就好比hive是专门为hadoop设计的一个大数据仓库工具一样. 特性: .易整合 可以将sql查询与spark应用程序进 ...

  8. Spark 性能相关参数配置详解-Storage篇

    随着Spark的逐渐成熟完善, 越来越多的可配置参数被添加到Spark中来, 本文试图通过阐述这其中部分参数的工作原理和配置思路, 和大家一起探讨一下如何根据实际场合对Spark进行配置优化. 由于篇 ...

  9. yaml文件转properties和properties转yaml

    首先要引入依赖 <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artif ...

  10. 制作initramfs/initrd镜像

    Linux kernel在自身初始化完成之后,需要能够找到并运行第一个用户程序(这个程序通常叫做"init"程序).用户程序存在于文件系统之中,因此,内核必须找到并挂载一个文件系统 ...