mybatis输入映射(包装类型)+输出映射+动态sql

1.输入映射——包装类型

通过parameterType指定输入参数的类型,类型可以是简单类型,hashmap,pojo包装类型
需求:查询用户综合信息,需要传入查询条件(可能包括用户信息,其他信息)

AdminBean.java

package cn.huan.mybatis;

/**
 * Created by 马欢欢 on 2017/6/29.
 */
public class AdminBean {
    private int a_id;
    private String a_nameid;
    private String a_username;
    private String a_password;
    private int a_trank;

    @Override
    public String toString() {
        return "AdminBean{" +
                "a_id=" + a_id +
                ", a_nameid='" + a_nameid + '\'' +
                ", a_username='" + a_username + '\'' +
                ", a_password='" + a_password + '\'' +
                ", a_trank=" + a_trank +
                '}';
    }

    public int getA_id() {
        return a_id;
    }

    public void setA_id(int a_id) {
        this.a_id = a_id;
    }

    public String getA_nameid() {
        return a_nameid;
    }

    public void setA_nameid(String a_nameid) {
        this.a_nameid = a_nameid;
    }

    public String getA_username() {
        return a_username;
    }

    public void setA_username(String a_username) {
        this.a_username = a_username;
    }

    public String getA_password() {
        return a_password;
    }

    public void setA_password(String a_password) {
        this.a_password = a_password;
    }

    public int getA_trank() {
        return a_trank;
    }

    public void setA_trank(int a_trank) {
        this.a_trank = a_trank;
    }
}

AdminCustom.java //可扩展用户信息

package cn.huan.mybatis;

/**
 * Created by 马欢欢 on 2017/6/30.
 */
public class AdminCustom extends AdminBean {
    //可扩展用户信息
}

AdminQuerVo.java

package cn.huan.mybatis;

/**
 * Created by 马欢欢 on 2017/6/30.
 */
public class AdminQuerVo {
    private AdminCustom adminCustom;

    public AdminCustom getAdminCustom() {
        return adminCustom;
    }

    public void setAdminCustom(AdminCustom adminCustom) {
        this.adminCustom = adminCustom;
    }
}

mapper.xml映射文件

<!--用户信息综合查询-->
    <select id="findUserList" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="cn.huan.mybatis.AdminCustom">
        select * from admin where a_trank=#{adminCustom.a_trank} and a_username like '%${adminCustom.a_username}%'

    </select>

接口AdminMapper.java

/**
     * 用户信息综合查询
     * @param adminQuerVo
     * @return
     * @throws Exception
     */
    public List<AdminCustom> findUserList(AdminQuerVo adminQuerVo) throws Exception;

测试实现

package cn.mapper;

import cn.huan.mybatis.AdminBean;
import cn.huan.mybatis.AdminCustom;
import cn.huan.mybatis.AdminQuerVo;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Before;
import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;
import java.util.List;

/**
 * Created by 马欢欢 on 2017/6/29.
 */
public class AdminMapperTest {
    private SqlSessionFactory sqlSessionFactory;
    @Before
    //测试前执行
   public void setUp() throws IOException {
       //配置文件
       String resource = "mybatis-config.xml";
       //的到配置文件流
       InputStream inputStream =  Resources.getResourceAsStream(resource);
       //创建会话工厂
       sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
   }

    @Test
    public void testFindUserList() throws Exception {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //创建AdminMapper对象,mybatis自动生成mapper代理对象
        AdminMapper adminMapper = sqlSession.getMapper(AdminMapper.class);

        AdminQuerVo adminQuerVo = new AdminQuerVo();
        AdminCustom adminCustom = new AdminCustom();
        adminCustom.setA_username("员");
        adminCustom.setA_trank(3);
        adminQuerVo.setAdminCustom(adminCustom);

        List<AdminCustom> list = adminMapper.findUserList(adminQuerVo);
        System.out.println(list);
    }
}

2.输出映射:

a.resultType

  • 使用resultType进行输出映射,只有查询出来的列明和pojo中的属性名一致,该列才可以映射成功
  • 如果查询出来的列名和pojo中的属性名全不一致,没有创建pojo对象。
  • 只要查询出来的列名和pojo属性有一个一致,就会创建pojo对象。

需求:用户信息的综合查询列表总数,通过查询总数和上边用户综合查询列表才可以实现分页。

mapper.xml映射文件

  <select id="findUserCount" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="int">
        select count(*) from admin where a_trank=#{adminCustom.a_trank} and a_username like '%${adminCustom.a_username}%'

    </select>

接口AdminMapper.java

    public int findUserCount(AdminQuerVo adminQuerVo) throws Exception;

测试实现

package cn.mapper;

import cn.huan.mybatis.AdminBean;
import cn.huan.mybatis.AdminCustom;
import cn.huan.mybatis.AdminQuerVo;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Before;
import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;
import java.util.List;

/**
 * Created by 马欢欢 on 2017/6/29.
 */
public class AdminMapperTest {
    private SqlSessionFactory sqlSessionFactory;
    @Before
    //测试前执行
   public void setUp() throws IOException {
       //配置文件
       String resource = "mybatis-config.xml";
       //的到配置文件流
       InputStream inputStream =  Resources.getResourceAsStream(resource);
       //创建会话工厂
       sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
   }


    @Test
    public void testFindUserCount() throws Exception {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //创建AdminMapper对象,mybatis自动生成mapper代理对象
        AdminMapper adminMapper = sqlSession.getMapper(AdminMapper.class);

        AdminQuerVo adminQuerVo = new AdminQuerVo();
        AdminCustom adminCustom = new AdminCustom();
        adminCustom.setA_username("员");
        adminCustom.setA_trank(3);
        adminQuerVo.setAdminCustom(adminCustom);

        int count= adminMapper.findUserCount(adminQuerVo);
        System.out.println(count);
    }
}


  • 小结:查询出来的结果集只有一行且一列,可以使用简单类型进行输出映射.

b.resultMap使用方法

如果查询出来的列名和pojo的属性名不一致。通过定义一个resultMap对列名和pojo属性名之间作一个映射关系。
1.定义 resultMap
2.使用 resultMap作为输出映射类型

需求: 将 下面的sql语句用 AdminBean完成映射
SELECT a_nameid id_ ,a_username name_ FROM admin WHERE a_nameid=#{value}

1.定义resultMap
将查询结果 和AdminBean做映射

<!--定义resultMap-->
<!--将 SELECT a_nameid id_ ,a_username name_  FROM admin WHERE a_nameid=#{value}查询结果 和AdminBean做映射-->
    <resultMap id="adminResultMap" type="adminBean">
        <!--id:表示查询结果的唯一标识
            column:查询出来的列名
            property:type指定的pojo类型中的属性名
        -->
        <id column="id_" property="a_nameid"/>
        <!--result:对普通名称映射定义
            column:查询出来的列名
            property:type指定的pojo类型中的属性名
        -->
        <result  column="name_" property="a_username"/>
    </resultMap>

  <select id="findUserByResultMmap" parameterType="int"
            resultMap="adminResultMap">  -- 定义的resultMap 如果这个resultMap在其它的mapper文件 前面需要加namedpace

            SELECT a_nameid id_ ,a_username name_  FROM admin WHERE a_id=#{value}
    </select>

接口AdminMapper.java

   public AdminBean findUserByResultMmap(int id) throws Exception;

测试类:

@Test
    public void testFindUserByResultMmap() throws Exception {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //创建AdminMapper对象,mybatis自动生成mapper代理对象
        AdminMapper adminMapper = sqlSession.getMapper(AdminMapper.class);

        AdminBean adminBean= adminMapper.findUserByResultMmap(10);
        System.out.println(adminBean);
    }

3.动态sql语句

a.动态sql语句--if判断 及where

 <!--用户信息综合查询-->
    <select id="findUserList" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="cn.huan.mybatis.AdminCustom">
        select * from admin
        <where>
            <if test="adminCustom!=null">
                <if test="adminCustom.a_trank!=null and adminCustom.a_trank!='' ">
                    and a_trank=#{adminCustom.a_trank}
                </if>
                <if test="adminCustom.a_username!=null and adminCustom.a_username!=''">
                    and a_username like '%${adminCustom.a_username}%'
                </if>
            </if>
        </where>
    </select>

b.动态sql片段

定义

<sql id="query_user_where">
            <if test="adminCustom!=null">
                <if test="adminCustom.a_trank!=null and adminCustom.a_trank!='' ">
                    and a_trank=#{adminCustom.a_trank}
                </if>
                <if test="adminCustom.a_username!=null and adminCustom.a_username!=''">
                    and a_username like '%${adminCustom.a_username}%'
                </if>
            </if>
       
    </sql>

引用

 <!--用户信息综合查询-->
    <select id="findUserList" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="cn.huan.mybatis.AdminCustom">
        select * from admin
        <where>
            <!--如果refid指定id不在本mapper中 前面需要加上namespace-->
            <include refid="query_user_where"></include>
        </where>
    </select>

c.sql--foreach
需求:
SELECT a_nameid id_ ,a_username name_ FROM admin WHERE a_username like '%${value}%' and( a_id=1 OR a_id=2);
SELECT a_nameid id_ ,a_username name_ FROM admin WHERE a_id IN(1,2,3);

<!--用户信息综合查询-->

    <select id="findUserList" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="cn.huan.mybatis.AdminCustom">
        select * from admin
        <!--collection:指定输入对象中集合属性
            item:每次遍历生成对象
            open:开始遍历时拼接串
            close:结束遍历时拼接串
            separator:遍历两个对象中需要拼接的串
         -->
        <where>
           <foreach collection="ids" item="admin_id" open="and(" close=")" separator="or">
               id=#{admin_id}
           </foreach>
        </where>
    </select>
    <select id="findUserList" parameterType="cn.huan.mybatis.AdminQuerVo"
            resultType="cn.huan.mybatis.AdminCustom">
        select * from admin
        <!--collection:指定输入对象中集合属性
            item:每次遍历生成对象
            open:开始遍历时拼接串
            close:结束遍历时拼接串
            separator:遍历两个对象中需要拼接的串
         -->
        <where>
           <foreach collection="ids" item="admin_id" open="and a_id in(" close=")" separator=",">
               id=#{admin_id}
           </foreach>
        </where>
    </select>

上一篇:mybatis全局配置文件mybatis-config.xml

文集:mybatis框架学习

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

推荐阅读更多精彩内容