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>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/326983.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

from + size must be less than or equal to: [10000] but was [10550]

from size must be less than or equal to: [10000] but was [10550]_绅士jiejie的博客-CSDN博客 以上错误是ElasticSearch分页搜索时出现的&#xff0c;这是因为ES默认支持的最大条数就是10000条&#xff0c;深度分页导致总条数超过10000&#xff0c;就会报这个错。 解决方…

java并发编程之4——Java锁分解锁分段技术

转载自 java并发编程之4——Java锁分解锁分段技术 并发编程的所有问题&#xff0c;最后都转换成了&#xff0c;“有状态bean”的状态的同步与互斥修改问题。而最后提出的解决“有状态bean”的同步与互斥修改问题的方案是为所有修改这个状态的方法都加上锁&#xff0c;这样也就可…

云计算设计模式(五)——计算资源整合模式

合并多个任务或操作成一个单一的计算单元。这种模式可以提高计算资源的利用率&#xff0c;并降低与云托管的应用程序进行计算处理相关的成本和管理开销。 背景和问题 云应用程序频繁执行各种操作。在某些解决方案也可能是有意义的最初遵循的关注点分离的设计原则&#xff0c;并…

stream获取filter

Java集合Stream类filter的使用_黄嘉成的博客-CSDN博客 Java集合Stream类filter的使用 黄嘉成 2018-05-11 11:49:42 242767 收藏 116 分类专栏&#xff1a; Java高级编程 文章标签&#xff1a; java 集合 Stream filter 过滤 版权 Java高级编程 专栏收录该内容 4 篇文章0 订…

MySQL数据库开发的 36 条军规

转载自 MySQL数据库开发的 36 条军规 核心军规 尽量不在数据库做运算 控制单表数据量 纯INT不超过10M条&#xff0c;含Char不超过5M条 保持表身段苗条 平衡范式和冗余 拒绝大SQL&#xff0c;复杂事务&#xff0c;大批量任务 字段类军规 用好数值字段&#xff0c;尽量简化…

mybatis简单案例源码详细【注释全面】——测试层(UserMapperTest.java)

/** * Title: UserMapperTest.java * Package org.test * Description: TODO该方法的主要作用&#xff1a; * author A18ccms A18ccms_gmail_com * date 2017-10-5 下午7:51:50 * version V1.0 */ package org.test;import java.io.IOException; import java.io.InputStr…

Visual Studio 2017 RC3支持.NET Core,延迟对Python的支持

Visual Studio 2017第三个候选版本上周发布&#xff0c;解决了之前发现的安装程序的小问题。由于这些问题得到了解决&#xff0c;现在值得关注的就是这次版本中更新了什么内容。&#xff08;版本是发布于1月27日的build 26127.00&#xff09; RC3版本中最值得关注的部分就是对N…

双向链表的(CRUD)

代码实现(CRUD) package com.atguigu.linkedlist;/*** 创建人 wdl* 创建时间 2021/3/19* 描述*/ public class DoubleLinkedListDemo {public static void main(String[] args) {//测试System.out.println("双向链表的测试");HeroNode2 hearo1 new HeroNode2(1, &q…

java读取Resources下文件

java读取Resources下文件_杰子的世界-CSDN博客_java获取resources下的文件 第四种&#xff0c; 读取路径 ResourceBundle bundle ResourceBundle.getBundle("config"); String url bundle.getString("url"); 1 2 该方法默认读取的是resources文件夹下的以…

达到年薪 40W 必需掌握的技术。

转载自 达到年薪 40W 必需掌握的技术。 很多人在问我&#xff0c;程序员如何拿高薪&#xff0c;如何做到年薪40W&#xff0c;其实总结出来还是一句话&#xff0c;你的技术决定你的能力已经薪资。 那么什么样的技术人才才能拿到一份Java行业里面的高薪呢&#xff1f;下面是我…

mybatis简单案例源码详细【注释全面】——Utils层(MybatisUtils.java)

/** * Title: MybatisUtils.java * Package org.util * Description: TODO该方法的主要作用&#xff1a; * author A18ccms A18ccms_gmail_com * date 2017-10-5 下午8:38:14 * version V1.0 */ package org.util;import java.io.IOException; import java.io.InputStrea…

虚拟研讨会:.NET的未来在哪里?

.NET生态系统在过去的一年中发生了很多事情。在几个方面发展非常迅速&#xff1a;Xamari、UWP、.NET Core、.NET native、F#和开源等等。 如果要关注细节&#xff0c;那大的景象难以描绘。因为在每个方面都有新的动作&#xff1a;跨平台、云、移动、Web应用和通用应用。开发人员…

iOS Charles 抓包

iOS Charles 抓包指南 - 从入门到精通_VictorZhang-CSDN博客_charles ios 下载安装包 Download a Free Trial of Charles • Charles Web Debugging Proxy

使用Servlet上传多张图片——访问提示

上传文件&#xff0c;我们在做项目中补课避免的&#xff0c;有时候我们需要上传单张或者单个文件&#xff0c;但是有时候我们就需要上传多个文件或者多张图片了&#xff0c;我们这里以多张&#xff08;4张&#xff09;图片为例&#xff0c;再多也都是一样的概念&#xff0c;接下…

云计算设计模式(六)——命令和查询职责分离(CQRS)模式

隔离&#xff0c;通过使用不同的接口&#xff0c;从操作读取数据更新数据的操作。这种模式可以最大限度地提高性能&#xff0c;可扩展性和安全性;支持系统在通过较高的灵活性&#xff0c;时间的演变;防止更新命令&#xff0c;从造成合并在域级别上的冲突。 背景和问题 在传统的…

Intellij IDEA 那些隐藏好用的小技巧

转载自 Intellij IDEA 那些隐藏好用的小技巧 概述 之前写了一篇介绍IntellIJ IDEA的文章《 Intellij Idea非常6的10个姿势 》&#xff0c;主要是列出一些平时大家可能没用过或者没怎么用&#xff0c;但是又非常好用的IntellIJ IDEA小技巧。由于篇幅原因&#xff0c;只是列出了…

约瑟夫(环)问题(Josephu)(单向环形链表)

问题描述 代码实现 package com.atguigu.linkedlist;import com.sun.org.apache.bcel.internal.generic.NEW;/*** 创建人 wdl* 创建时间 2021/3/19* 描述*/ public class Josepfu {public static void main(String[] args) {//测试一把看看构建的环形链表和遍历是否正确Circle…

使用Servlet上传多张图片——实体层(ProductInfo.java)

package orz.treeSquirrels.entity; /*** 商品信息表的实体类* author Administrator**/ public class ProductInfo {private int productId; //商品编号private String productName; //商品名称private float price; //商品价格private String details; //商品详情…

vue+vscode+nodejs 开发环境搭建

参考文献 vuevscodenodejs 开发环境搭建 - Desperador - 博客园 nodejs 指定全局安装路径和缓存路径 - Curedfisher - 博客园 安装配置nodejs并创建Vue项目 vscode下载地址&#xff1a; Documentation for Visual Studio Code nodejs安装配置 1.下载 地址&#xff1a; …