mybatis简单案例源码详细【注释全面】——Dao层映射文件(UserMapper.xml)【重要】

简介: mybatis简单案例源码详细【注释全面】——Dao层映射文件(UserMapper.xml)【重要】
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.dao.UserMapper">
  
  <!-- user的resultMap,当数据库字段信息和对象的属性不一样时,需要通过resultMap来映射 -->
  <!--association,property,对应的是实体类对象的名称;resultMap对应的是另一个表的映射  -->
  <resultMap type="Users" id="userList">
    <result property="id" column="id"/>
    <result property="userCode" column="userCode"/>
    <result property="userName" column="userName"/>
    <result property="userPassword" column="userPassword"/>
    <result property="gender" column="gender"/>
    <result property="birthday" column="birthday"/>
    <result property="phone" column="phone"/>
    <result property="address" column="address"/>
    <result property="userrole" column="userrole"/>
    <result property="createBy" column="createBy"/>
    <result property="creationDate" column="creationDate"/>
    <result property="modifyBy" column="modifyBy"/>
    <result property="modifyDate" column="modifyDate"/>
    <association property="role" resultMap="roleList"/>
  </resultMap>
  <!-- Role的resultMap -->
  <resultMap type="Role" id="roleList">
    <result property="id" column="id"/>
    <result property="roleCode" column="roleCode"/>
    <result property="roleName" column="roleName"/>
    <result property="createdBy" column="createdBy"/>
    <result property="creationDate" column="creationDate"/>
    <result property="modifyBy" column="modifyBy"/>
    <result property="modifyDate" column="modifyDate"/>
    
  </resultMap>
  <!-- 查询用户表的记录数 -->
  <select id="count" resultType="int">
    select count(*) from user
  </select>
  
  <!-- 查询所有的用户信息 -->
  <select id="getUserList" resultType="Users">
    select * from user
  </select>
  
  <!-- 根据用户名进行模糊查询 -->
  <select id="getUsersByName" resultMap="userList" parameterType="string">
    select * from user where userName like concat ('%',#{userName},'%')
  </select>
  
  <!-- 查询用户列表 -->
  <select id="getUserListByUser" resultMap="userList" parameterType="Users">
    select * from user where userName like concat('%',#{userName},'%') and userRole = #{userrole}
  </select>
  
  <!-- 查询用户列表,参数是Map集合 -->
  <select id="getUsersListByMap" resultMap="userList" parameterType="Map">
    select * from user where userName like concat ('%',#{userName},'%') and userRole = #{userrole}
  </select>
  
  <!-- 查询用户列表,连接查询-->
  <select id="getUserListAndRole" resultMap="userList" parameterType="Users">
    
  select * from user u join role r on u.userRole = r.id  
    where u.userName like concat ('%',#{userName},'%') and u.userrole = #{userrole}
  </select>
  
  <!-- 增加用户,字段名必须都写上 -->
  <insert id="saveUser" parameterType="Users">
    insert into user (userCode,userName,userPassword,gender,birthday,phone,
                address,userRole,createdBy,creationDate,modifyBy,modifyDate) 
    values(#{userCode},#{userName},#{userPassword},#{gender},#{birthday},#{phone},#{address},#{userrole},#{createBy},#{creationDate},#{modifyBy},#{modifyDate})
  </insert>
  
  <!-- 根据id修改信息 -->
  <update id="updateUser" parameterType="Users">
    update user set userCode=#{userCode},userName=#{userName},userPassword=#{userPassword},gender=#{gender},
            birthday=#{birthday},phone=#{phone},address=#{address},userRole=#{userrole},createdBy=#{createBy},
            creationDate=#{creationDate},modifyBy=#{modifyBy},modifyDate=#{modifyDate}
            where id=#{id}
  </update>
  
  <!-- 根据编号进行删除数据 -->
  <delete id="delUser" parameterType="int">
    delete from user where id=#{id}
  </delete>
  
  <!-- 根据id查询用户列表 -->
  <select id="getUsersById" parameterType="int" resultMap="userList">
    select * from user where id = #{id}
  </select>
  
  <!-- 根据角色id查询用户列表 -->
  <select id="getUsersByRoleId" parameterType="int" resultMap="userList">
    select * from user u,role r where u.userrole = #{userrole} and r.id = u.userrole
  </select>
  
  <!-- 根据用户名和角色编号查询用户信息 -->
  <select id="getUsersListByUserNameAndRole_if" resultMap="userList">
    select * from user u, role r where u.userrole=r.id
    <if test="userrole!=null">
      and userrole = #{userrole}
    </if>
    <if test="userName!=null">
      and userName like concat('%',#{userName},'%')
    </if>
  </select>
  
  <!-- 动态根据用户名和角色id查询用户列表,where and|or -->
  <select id="getUsersListByUserNameAndRole_ifAndwhere" resultMap="userList">
    select * from user 
    <where>
      <if test="userrole!=null and userrole!=''">
        and userrole = #{userrole}
      </if>
      <if test="userName!=null and userName!=''">
        and userName like concat('%',#{userName},'%')
      </if>
    </where>
  </select>
  
  <!-- 动态修改用户信息表if+set -->
  <update id="updateUser_ifAndSet" parameterType="Users">
    update user
    <set>
      <if test="userCode!=null">userCode=#{userCode},</if>
      <if test="userName!=null">userName=#{userName},</if>
      <if test="userPassword!=null">userPassword=#{userPassword},</if>
      <if test="gender!=null">gender=#{gender},</if>
      <if test="birthday!=null">birthday=#{birthday},</if>
      <if test="phone!=null">phone=#{phone},</if>
      <if test="address!=null">address=#{address},</if>
      <if test="userrole!=null">userrole=#{userrole},</if>
      <if test="createBy!=null">createdBy=#{createBy},</if>
      <if test="creationDate!=null">creationDate=#{creationDate},</if>
      <if test="modifyBy!=null">modifyBy=#{modifyBy},</if>
      <if test="modifyDate!=null">modifyDate=#{modifyDate},</if>
    </set>
      where id=#{id}
  </update>
  
  
  <!-- 动态根据用户名和角色id查询用户列表,使用trim进行查询用户信息,where and|or -->
  <!-- prefix:前缀,通过自动识别是否有返回值,在trim包含的内容上加上前缀 -->
  <!-- suffix:后缀,在trim包含的内容的上加上后缀 -->
  <!-- prefixOverrides:对于trim包含的内容的首部进行指定内容 -->
  <!-- suffixOverrides:地狱与trim包含的内容的首尾部进行指定内容的忽略 -->
  <select id="getUsersListByUserNameAndRole_ifAndwhere_trim" resultMap="userList">
    select * from user 
    <trim prefix="where" prefixOverrides="and | or">
      <if test="userrole!=null and userrole!=''">
        and userrole = #{userrole}
      </if>
      <if test="userName!=null and userName!=''">
        and userName like concat('%',#{userName},'%')
      </if>
    </trim>
  </select>
  
  <!-- 动态修改用户信息表if+trim -->
  <update id="updateUser_ifAndTrim" parameterType="Users">
    update user
    <trim prefix="set" suffixOverrides="," suffix="where id=#{id}">
      <if test="userCode!=null">userCode=#{userCode},</if>
      <if test="userName!=null">userName=#{userName},</if>
      <if test="userPassword!=null">userPassword=#{userPassword},</if>
      <if test="gender!=null">gender=#{gender},</if>
      <if test="birthday!=null">birthday=#{birthday},</if>
      <if test="phone!=null">phone=#{phone},</if>
      <if test="address!=null">address=#{address},</if>
      <if test="userrole!=null">userrole=#{userrole},</if>
      <if test="createBy!=null">createdBy=#{createBy},</if>
      <if test="creationDate!=null">creationDate=#{creationDate},</if>
      <if test="modifyBy!=null">modifyBy=#{modifyBy},</if>
      <if test="modifyDate!=null">modifyDate=#{modifyDate},</if>
    </trim>
  </update>
  
  <!-- 根据用户角色列表,获取该角色刘表下用户列表信息foreach_array -->
  <!-- item:循环体中的具体对象。支持属性的点路径访问,如item.age,item.info.details。 具体说明:在list和数组中是其中的对象,在map中是value。该参数为必选。 -->
  <!-- collection:要做foreach的对象,作为入参时,List<?>对象默认用list代替作为键,数组对象有array代替作为键,Map对象没有默认的键。
          当然在作为入参时可以使用@Param("keyName")来设置键,设置keyName后,list,array将会失效。 除了入参这种情况外,还有一种作为参数对象的某个字段的时候。举个例子:
          如果User有属性List ids。入参是User对象,那么这个collection = "ids"
          如果User有属性Ids ids;其中Ids是个对象,Ids有个属性List id;入参是User对象,那么collection = "ids.id"
          上面只是举例,具体collection等于什么,就看你想对那个元素做循环。
          该参数为必选。 -->
  <!-- separator:元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,如in(1,2,)这样。该参数可选。 -->
  <!-- open:foreach代码的开始符号,一般是(和close=")"合用。常用在in(),values()时。该参数可选。 -->
  <!-- close:foreach代码的关闭符号,一般是)和open="("合用。常用在in(),values()时。该参数可选。 -->
  <!-- index:在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选。 -->
  <select id="getUsersByRoleId_foreach_array" resultMap="userList">
    select * from user where userrole in 
      <foreach collection="array" item="roleids" open="(" separator="," close=")">
        #{roleids}
      </foreach>
  </select>
  
  <!-- 根据用户角色列表,获取该角色刘表下用户列表信息foreach_list -->
  <select id="getUsersByRoleId_foreach_list" resultMap="userList">
    select * from user where userrole in 
    <foreach collection="list" item="roleids" open="(" separator="," close=")">
      #{roleids}
    </foreach>
  </select>
  
  <!-- 根据用户角色列表和性别(多参数),获取该角色刘表下用户列表信息foreach_map -->
  <select id="getUsersByRoleId_foreach_many_map" resultMap="userList">
    select * from user where gender = #{gender} and  userrole in 
    <foreach collection="roleids" item="roleMap" open="(" separator="," close=")">
      #{roleMap}
    </foreach>
  </select>
  
  <!-- 根据用户角色列表(单参数),获取该角色刘表下用户列表信息foreach_map -->
  <select id="getUsersByRoleId_foreach_one_map" resultMap="userList">
    select * from user where   userrole in 
    <foreach collection="rKey" item="roleMap" open="(" separator="," close=")">
      #{roleMap}
    </foreach>
  </select>
  
  <!-- 查询用户列表,使用choose -->
  <select id="getUsersList_choose" resultMap="userList">
    select * from user where 1=1
      <choose>
        <when test="userName!=null and userName!=''">
          and userName  like concat('%',#{userName},'%')
        </when>
        <when test="userrole!=null">
          and userrole =#{userrole}
        </when>
        <when test="userCode!=null and userCode!=''">
          and userCode =#{userCode}
        </when>
        <otherwise>
          and YEAR(creationDate) = YEAR(#{creationDate})
        </otherwise>
      </choose>
  </select>
  
  <!-- 分页显示用户信息 -->
  <select id="getUserList_page" resultMap="userList">
    select * from user limit #{from},#{pageSize}
  </select>
</mapper>


相关文章
|
2月前
|
SQL XML Java
mybatis-源码深入分析(一)
mybatis-源码深入分析(一)
|
28天前
|
SQL Java 数据库连接
mybatis使用四:dao接口参数与mapper 接口中SQL的对应和对应方式的总结,MyBatis的parameterType传入参数类型
这篇文章是关于MyBatis中DAO接口参数与Mapper接口中SQL的对应关系,以及如何使用parameterType传入参数类型的详细总结。
30 10
|
1月前
|
前端开发 Java 数据库连接
表白墙/留言墙 —— 中级SpringBoot项目,MyBatis技术栈MySQL数据库开发,练手项目前后端开发(带完整源码) 全方位全步骤手把手教学
本文是一份全面的表白墙/留言墙项目教程,使用SpringBoot + MyBatis技术栈和MySQL数据库开发,涵盖了项目前后端开发、数据库配置、代码实现和运行的详细步骤。
36 0
表白墙/留言墙 —— 中级SpringBoot项目,MyBatis技术栈MySQL数据库开发,练手项目前后端开发(带完整源码) 全方位全步骤手把手教学
|
1月前
|
Java 数据库连接 mybatis
Springboot整合Mybatis,MybatisPlus源码分析,自动装配实现包扫描源码
该文档详细介绍了如何在Springboot Web项目中整合Mybatis,包括添加依赖、使用`@MapperScan`注解配置包扫描路径等步骤。若未使用`@MapperScan`,系统会自动扫描加了`@Mapper`注解的接口;若使用了`@MapperScan`,则按指定路径扫描。文档还深入分析了相关源码,解释了不同情况下的扫描逻辑与优先级,帮助理解Mybatis在Springboot项目中的自动配置机制。
105 0
Springboot整合Mybatis,MybatisPlus源码分析,自动装配实现包扫描源码
|
3月前
|
XML Java 数据库连接
mybatis源码研究、搭建mybatis源码运行的环境
这篇文章详细介绍了如何搭建MyBatis源码运行的环境,包括创建Maven项目、导入源码、添加代码、Debug运行研究源码,并提供了解决常见问题的方法和链接到搭建好的环境。
mybatis源码研究、搭建mybatis源码运行的环境
|
3月前
|
Web App开发 前端开发 关系型数据库
基于SpringBoot+Vue+Redis+Mybatis的商城购物系统 【系统实现+系统源码+答辩PPT】
这篇文章介绍了一个基于SpringBoot+Vue+Redis+Mybatis技术栈开发的商城购物系统,包括系统功能、页面展示、前后端项目结构和核心代码,以及如何获取系统源码和答辩PPT的方法。
|
3月前
|
供应链 前端开发 Java
服装库存管理系统 Mybatis+Layui+MVC+JSP【完整功能介绍+实现详情+源码】
该博客文章介绍了一个使用Mybatis、Layui、MVC和JSP技术栈开发的服装库存管理系统,包括注册登录、权限管理、用户和货号管理、库存管理等功能,并提供了源码下载链接。
服装库存管理系统 Mybatis+Layui+MVC+JSP【完整功能介绍+实现详情+源码】
|
28天前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
84 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
28天前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
47 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
1月前
|
前端开发 Java Apache
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
本文详细讲解了如何整合Apache Shiro与Spring Boot项目,包括数据库准备、项目配置、实体类、Mapper、Service、Controller的创建和配置,以及Shiro的配置和使用。
240 1
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个