mybatis輸入映射(包裝類型)+輸出映射+動態(tài)sql

1.輸入映射——包裝類型

通過parameterType指定輸入?yún)?shù)的類型路呜,類型可以是簡單類型惜傲,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;

測試實現(xiàn)

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
    //測試前執(zhí)行
   public void setUp() throws IOException {
       //配置文件
       String resource = "mybatis-config.xml";
       //的到配置文件流
       InputStream inputStream =  Resources.getResourceAsStream(resource);
       //創(chuàng)建會話工廠
       sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
   }

    @Test
    public void testFindUserList() throws Exception {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //創(chuàng)建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中的屬性名全不一致择诈,沒有創(chuàng)建pojo對象。
  • 只要查詢出來的列名和pojo屬性有一個一致出皇,就會創(chuàng)建pojo對象羞芍。

需求:用戶信息的綜合查詢列表總數(shù),通過查詢總數(shù)和上邊用戶綜合查詢列表才可以實現(xiàn)分頁郊艘。

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;

測試實現(xiàn)

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
    //測試前執(zhí)行
   public void setUp() throws IOException {
       //配置文件
       String resource = "mybatis-config.xml";
       //的到配置文件流
       InputStream inputStream =  Resources.getResourceAsStream(resource);
       //創(chuàng)建會話工廠
       sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
   }


    @Test
    public void testFindUserCount() throws Exception {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        //創(chuàng)建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();
        //創(chuàng)建AdminMapper對象畏浆,mybatis自動生成mapper代理對象
        AdminMapper adminMapper = sqlSession.getMapper(AdminMapper.class);

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

3.動態(tài)sql語句

a.動態(tài)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.動態(tài)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框架學習

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市狞贱,隨后出現(xiàn)的幾起案子刻获,更是在濱河造成了極大的恐慌,老刑警劉巖斥滤,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件将鸵,死亡現(xiàn)場離奇詭異,居然都是意外死亡佑颇,警方通過查閱死者的電腦和手機顶掉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來挑胸,“玉大人痒筒,你說我怎么就攤上這事。” “怎么了簿透?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵移袍,是天一觀的道長。 經(jīng)常有香客問我老充,道長葡盗,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任啡浊,我火速辦了婚禮觅够,結果婚禮上,老公的妹妹穿的比我還像新娘巷嚣。我一直安慰自己喘先,他們只是感情好,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布廷粒。 她就那樣靜靜地躺著窘拯,像睡著了一般。 火紅的嫁衣襯著肌膚如雪坝茎。 梳的紋絲不亂的頭發(fā)上涤姊,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天,我揣著相機與錄音景东,去河邊找鬼砂轻。 笑死,一個胖子當著我的面吹牛斤吐,可吹牛的內(nèi)容都是我干的搔涝。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼和措,長吁一口氣:“原來是場噩夢啊……” “哼庄呈!你這毒婦竟也來了?” 一聲冷哼從身側響起派阱,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤诬留,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后贫母,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體文兑,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年腺劣,在試婚紗的時候發(fā)現(xiàn)自己被綠了绿贞。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡橘原,死狀恐怖籍铁,靈堂內(nèi)的尸體忽然破棺而出涡上,到底是詐尸還是另有隱情,我是刑警寧澤拒名,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布吩愧,位于F島的核電站,受9級特大地震影響增显,放射性物質發(fā)生泄漏雁佳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一甸怕、第九天 我趴在偏房一處隱蔽的房頂上張望甘穿。 院中可真熱鬧腮恩,春花似錦梢杭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至荡含,卻和暖如春咒唆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背释液。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工全释, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人误债。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓浸船,卻偏偏與公主長得像,于是被迫代替她去往敵國和親寝蹈。 傳聞我的和親對象是個殘疾皇子李命,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容