基本查询,插入,更新,删除,多表查询,mybatis缓存

基本查询

查询数据(单表查询 多表连接 组合查询 分页查询 有参数 没参数 多个参数 返回值是一条 返回值是多条)
    <select id="getInfoById"  parameterType="int"  resultType="UserInfo"   >
        select  *  from userinfo  where id=#{id}
    </select>
  • resultType:
    • 如果查询返回的是一条数据,则直接写返回值类型
    • 如果查询返回的是多条数据,则写集合中的泛型
    <select id="getAll"  resultType="UserInfo"  >
        select *  from  userinfo
    </select>
返回值
  1. 如果没有参数,则省略parameterType属性
  2. 如果有一个参数,是基本数据类型,则SQL语句中获取参数时,用什么名字都能获取到
    但是基于编码规范,建议使用接口中形参的名字
  3. 如果有多个参数,解决方案:
  • 省略parameterType属性,SQL语句中通过参数的索引值获取参数,索引值从0开始 (不建议使用)

  • 使用实体类的类型传入,SQL语句中获取参数时,使用的是实体类中的属性名

  • 使用map类型传入,SQL语句中获取参数时,使用的是map中元素的key

UserInfoMapper.java类
public UserInfo getUsers(Map<String, String>  map);
UserInfoMapper.xml文件
<select id="getUsers"  resultType="UserInfo" >
        select *  from userinfo where username= #{0} and password=#{1}
    </select> 
---------------------------------------------------------------------------------------------------------------
<select id="getUsers" parameterType="UserInfo"   resultType="UserInfo" >
        select *  from userinfo where username=#{username} and password=#{password}
    </select>
    <select id="getUsers" parameterType="map"   resultType="UserInfo" >
        select *  from userinfo where username=#{k_username} and password=#{k_password}
    </select>
Test类
        UserInfo user = new UserInfo();
        user.setUsername("111");
        user.setPassword("111");
        UserInfo u = mapper.getUsers(user);
        System.out.println(u);
---------------------------------------------------------------------------------------------------------------     
        Map<String, String> map = new HashMap<>();
        map.put("k_username", "111");
        map.put("k_password", "111");
        UserInfo u = mapper.getUsers(map);
        System.out.println(u);

组合查询

  • where if
    • 字符串类型判空:username!=null and username!=''
    • int类型判空:id!=0
    • Date类型:date!=null
<select id="getUser" parameterType="UserInfo" resultType="UserInfo"  >
        select *  from  userinfo 
        <where>
            <if test="username!=null and username!='' ">
                and username  like #{username}
            </if>
            <if test="email!=null and email!='' ">
                and email=#{email}
            </if>
        </where>
    </select>

分页查询

    <select id="getPageUser" parameterType="map"    resultType="UserInfo">
        select * from userInfo limit #{k_index},#{k_pagesize}
    </select>
查询入职日期在指定日期之前 &lt;
    <select id="getEmpByHiredate" parameterType="Date" resultType="EmpInfo">
        select * from emp where hiredate &lt; #{hiredate}

    </select>
Test部分(日期转换)
        String strdate="1985-01-01";
        Date utilDate=null;

        try {
            utilDate = new SimpleDateFormat("yyyy-MM-dd").parse(strdate);
        } catch (ParseException e) {
            e.printStackTrace();
        }

        java.sql.Date   hiredate = new java.sql.Date(utilDate.getTime());
        List<EmpInfo> list1 = mapper.getEmpByHiredate(hiredate);
        for(EmpInfo e:list1){
            System.out.println(e);
        }

插入数据

存储数据
<insert id="insertEmp" parameterType="EmpInfo"    >
        insert into emp(ename,job,mgr,hiredate,sal,comm,deptno)  
        values (#{ename},#{job},#{mgr},#{hiredate},#{sal},#{comm},#{deptno})
    </insert>
存储数据:主键采用最大值+1的方式生成
selectKey标签:
  • keyProperty 属性:查询到的数据赋值给Emp中的哪个属性
  • resultType 属性:查询的返回值类型
  • order 属性:设置查询是在insert之前执行还是之后执行
<insert id="insertEmp" parameterType="EmpInfo" >

        <selectKey keyProperty="empno" resultType="int"  order="BEFORE" >
            select max(empno)+1 from emp
        </selectKey>
        
        insert into emp(empno,ename,job,mgr,hiredate,sal,comm,deptno)  
        values (#{empno},#{ename},#{job},#{mgr},#{hiredate},#{sal},#{comm},#{deptno})
    </insert>

更新数据

    <update id="updateEmp" parameterType="EmpInfo">
        update emp
        set sal =#{sal},comm=#{comm}
        where empno=#{empno}
    </update>
Test部分 自动提交:session.commit();
    //插入数据
        EmpInfo e= new EmpInfo();
        e.setEname("test012151");
        e.setJob("salesman");
        e.setMgr(7369);
        e.setHiredate(new java.sql.Date(new Date().getTime()));
        e.setSal(2560);
        e.setComm(5693);
        e.setDeptno(10);
        mapper.insertEmp(e);
        session.commit();
        System.out.println("新生成的主键值"+e.getEmpno());*/
        
        //修改数据
        EmpInfo e = new EmpInfo();
        e.setEmpno(7937);
        e.setSal(10000);
        e.setComm(8000);
        mapper.updateEmp(e);
        session.commit();
        

删除数据

根据一个元素删除数据

批量删除

foreach标签:实现循环遍历
  • collection 属性:要遍历的集合类型
  • item 属性:每次遍历得到的元素的名称(随意定义)
  • open 属性:遍历的结果以什么字符开头
  • close 属性:遍历的结果以什么字符结尾
  • separator 属性:遍历得到的元素以什么字符作为分隔符
xml文件
    <delete id="deleteEmps"   >
        delete from  emp  where empno in 

        <foreach collection="array" item="item" open="("  close=")"  separator=","   >
            #{item}
        </foreach>
    </delete>

组合查询

在Bean包中:存在两个实体类(1:有外键 关联2 ;2:无外键)
1:定义2的成员变量
2:定义1的List<1>的成员变量

一对一查询 emp==>dept

association标签:一对一查询 嵌套结果集处理
  • property 属性:嵌套的 Emp 的resultMap封装的结果要赋值给当前实体类Emp的那个属性
  • column 属性:外键列
  • javaType 属性:嵌套的 Emp resultMap的返回值类型
  • resultMap 属性:对应的(Dept) 嵌套的resultMap
xml文件
    <!-- 一对一查询   -->
    <select id="getEmpInfo" parameterType="int" resultMap="eresult"  >
        select e.*, d.deptno ddeptno,d.dname,d.loc
        from emp e,dept d 
        where empno=#{empno} and e.deptno=d.deptno
    </select>
    <resultMap type="Emp" id="eresult">
        <result property="empno" column="empno"   />
        <result property="ename" column="ename"   />
        <result property="job" column="job"   />
        <result property="mgr" column="mgr"   />
        <result property="sal" column="sal"   />
        <result property="hiredate" column="hiredate"   />
        <result property="comm" column="comm"   />
        <result property="deptno" column="deptno"   />

        <association property="dept"  column="deptno"  javaType="Dept"  resultMap="dresult"  />

    </resultMap>

    <resultMap type="Dept" id="dresult">
        <result property="dname" column="dname"   />
        <result property="loc" column="loc"   />
        <result property="deptno" column="ddeptno"   />
    </resultMap>

一对多查询 dept==>emp

collection标签:一对多查询
  • property 属性:构建的集合对象赋值给最终返回值类型中哪个属性
  • ofType 属性:集合中元素的类型
xml文件
    <select id="getDept" parameterType="int"  resultMap="dresult"  >
        select e.*,d.deptno ddeptno,d.dname,d.loc 
        from emp e,dept d 
        where d.deptno=#{deptno} and e.deptno=d.deptno
    </select>
    
    <resultMap type="Dept" id="dresult">
        <result property="deptno"  column="ddeptno"   />
        <result property="dname"  column="dname"   />
        <result property="loc"  column="loc"   />

        <collection property="emps"  ofType="Emp">
        
            <result property="empno" column="empno"   />
            <result property="ename" column="ename"   />
            <result property="job" column="job"   />
            <result property="mgr" column="mgr"   />
            <result property="sal" column="sal"   />
            <result property="hiredate" column="hiredate"   />
            <result property="comm" column="comm"   />
            <result property="deptno" column="deptno"   />
        </collection>
        
    </resultMap>

多对多查询 order==>product==>customer

association标签:一对一查询 嵌套结果集处理
  • property 属性:嵌套的 Emp 的resultMap封装的结果要赋值给当前实体类Emp的那个属性
  • column 属性:外键列
  • javaType 属性:嵌套的 Emp resultMap的返回值类型
  • resultMap 属性:对应的(Dept) 嵌套的resultMap
xml文件
    <select id="getAll"  resultMap="oresult"   >
        select o.*,c.cid ccid,c.cname,c.tel,c.address,p.pid ppid,p.pname,p.price pprice
        from orders o,customer c,product p
        where o.cid=c.cid and o.pid=p.pid
    </select>
    <resultMap type="Order" id="oresult">
    
        <result property="oid"  column="oid"  />
        <result property="pid"  column="pid"  />
        <result property="cid"  column="cid"  />
        <result property="count"  column="count"  />
        <result property="price"  column="price"  />
        
        <association property="p" column="pid" javaType="Product" resultMap="presult" />
        <association property="c" column="cid" javaType="Customer" resultMap="cresult"  />
    </resultMap>
    
    <resultMap type="Product" id="presult">
        <result property="pid"  column="ppid"  />
        <result property="pname"  column="pname"  />
        <result property="price"  column="pprice"  />
    </resultMap>
    
    <resultMap type="Customer" id="cresult">
        <result property="cid"  column="ccid"  />
        <result property="cname"  column="cname"  />
        <result property="tel"  column="tel"  />
        <result property="address"  column="address"  />
    </resultMap>

Sql片段

include标签:用于SQL片段中
  • refid属性:获取sql片段
//Sql片段
<sql id="sid">
select  *  from emp
</sql>

<select id="getEmpByName" parameterType="string" resultType="Emp"  >

<include refid="sid"/>
  where ename like #{ename}
<select>

mybatis缓存:

针对查询类需求,提高程序性能,减轻数据库访问压力,提供的缓存技术

一级缓存:默认开启的

  • 针对同一个SqlSession,如果基于某一个需求查询到一份数据,则mybatis会将查询结果存储在缓存中,接下来如果再一次做同样的查询,则mybatis会直接从缓存中拿数据,而不访问数据库,从而提升查询的性能
  • 手动不开启缓存:flushCache="true"
  • 如果过程中执行了该表的DML操作,则缓存数据自动消失

二级缓存:

  • 不限定SqlSession的缓存的使用
  • 不是默认开启的
  • 需要手动开启(在SqlMapConfig.xml中)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,012评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,628评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,653评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,485评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,574评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,590评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,596评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,340评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,794评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,102评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,276评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,940评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,583评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,201评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,441评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,173评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,136评论 2 352

推荐阅读更多精彩内容