MyBatis框架(9):動態(tài)sql

  • 1.什么是動態(tài)sql
    mybatis核心,對sql語句進(jìn)行靈活操作胧谈,通過表達(dá)式進(jìn)行判斷悼凑,對sql進(jìn)行靈活拼接、組裝隙券。

  • 2.需求
    用戶信息綜合查詢列表和用戶信息查詢列表總數(shù)這兩個(gè)statement的定義使用動態(tài)sql牙肝。
    對查詢條件進(jìn)行判斷唉俗,如果輸入?yún)?shù)不為空才進(jìn)行查詢條件拼接。

  • 3.mapper.xml
    原查詢語句配置:

<mapper namespace="cn.edu.hpu.mybatis.mapper.UserMapper">
    
    <!-- 用戶信息綜合查詢 
    #{UserCustom.sex}取出包裝對象中性別值
    ${UserCustom.username}取得pojo包裝對象中用戶名稱
    -->
    <select id="findUserList" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" 
                                resultType="cn.edu.hpu.mybatis.PO.UserCustom">
        select * from user where user.sex=#{userCustom.sex} and user.username like '%${userCustom.username}%'
    </select>
    
    <!-- 用戶信息綜合查詢總數(shù) -->
    <select id="findUserCount" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" resultType="int">
        select count(*) from user where user.sex=#{userCustom.sex} and user.username like '%${userCustom.username}%'
    </select>
    ......
</mapper>

修改后的查詢語句配置:

<!-- 用戶信息綜合查詢 
    #{UserCustom.sex}取出包裝對象中性別值
    ${UserCustom.username}取得pojo包裝對象中用戶名稱
    -->
    <select id="findUserList" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" 
                                resultType="cn.edu.hpu.mybatis.PO.UserCustom">
        select * from user 
        
        <!-- where標(biāo)簽可以自動去掉第一個(gè)and -->  
        <where>
        <if test="userCustom!=null">
            <if test="userCustom.sex!=null and userCustom.sex!=''">
                and user.sex=#{userCustom.sex}
            </if>
            <if test="userCustom.username!=null and userCustom.username!=''">
                and user.username like '%${userCustom.username}%'
            </if>
        </if>
        </where>
    </select>
    
    <!-- 用戶信息綜合查詢總數(shù) -->
    <select id="findUserCount" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" resultType="int">
        select count(*) from user 
  
        <!-- where標(biāo)簽可以自動去掉第一個(gè)and -->  
        <where>
        <if test="userCustom!=null">
            <if test="userCustom.sex!=null and userCustom.sex!=''">
                and user.sex=#{userCustom.sex}
            </if>
            <if test="userCustom.username!=null and userCustom.username!=''">
                and user.username like '%${userCustom.username}%'
            </if>
        </if>
        </where>
    </select>
  • 4.測試代碼
//用戶信息綜合查詢
    @Test
    public void testFindUserList() throws Exception{
        
        SqlSession sqlSession=sqlSessionFactory.openSession();
        
        //創(chuàng)建UserMapper代理對象
        UserMapper userMapper=sqlSession.getMapper(UserMapper.class);
        
        //創(chuàng)建包裝對象配椭,設(shè)置查詢條件
        UserQueryVo userQueryVo=new UserQueryVo();
        UserCustom userCustom=new UserCustom();
        //由于這里使用動態(tài)sql虫溜,如果這里不設(shè)置某個(gè)值,條件不會拼接在sql中
        //userCustom.setSex("男");
        userCustom.setUsername("張三");
        userQueryVo.setUserCustom(userCustom);
        
        //調(diào)用userMapper的方法
        List<UserCustom> users=userMapper.findUserList(userQueryVo);
        
        for (int i = 0; i < users.size(); i++) {
            UserCustom user=(UserCustom)users.get(i);
            System.out.println(user.getId()+":"+user.getUsername());
        }
    }

測試結(jié)果:
1:張三
4:張三豐

輸出日志:

DEBUG [main] - Opening JDBC Connection
DEBUG [main] - Created connection 31761534.
DEBUG [main] - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.Connection@1e4a47e]
DEBUG [main] - ==>  Preparing: select * from user WHERE user.username like '%張三%' 
DEBUG [main] - ==> Parameters: 
DEBUG [main] - <==      Total: 2

發(fā)現(xiàn)sql語句為select * from user WHERE user.username like '%張三%' 股缸,并沒有將sex拼接進(jìn)去衡楞,說明我們的動態(tài)sql設(shè)置成功

相應(yīng)的,把userCustom.setUsername("張三");也注釋掉敦姻,發(fā)現(xiàn)輸出日志:

DEBUG [main] - Opening JDBC Connection
DEBUG [main] - Created connection 24027753.
DEBUG [main] - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.Connection@16ea269]
DEBUG [main] - ==>  Preparing: select * from user 
DEBUG [main] - ==> Parameters: 
DEBUG [main] - <==      Total: 5

發(fā)現(xiàn)sql語句為select * from user瘾境,并沒有將sex和username拼接進(jìn)去,說明我們的動態(tài)sql設(shè)置成功

5.sql片段

5.1需求
將上邊實(shí)現(xiàn)的動態(tài)sql判斷代碼塊抽取出來镰惦,組成一個(gè)sql片段迷守。其它的statement中就可以引用sql片段。
方便程序員進(jìn)行開發(fā)旺入。

5.2定義sql片段

<mapper namespace="cn.edu.hpu.mybatis.mapper.UserMapper">
 
    <!-- 定義sql片段 
    id:sql片段的唯一標(biāo)識 
    在sql片段中不要加入where
    經(jīng)驗(yàn):一般我們定義sql片段是為了可重用性兑凿,是基于單表來定義sql片段,
    這樣的話這個(gè)sql片段可重用性才高-->
    <sql id="query_user_where">
        <if test="userCustom!=null">
            <if test="userCustom.sex!=null and userCustom.sex!=''">
                and user.sex=#{userCustom.sex}
            </if>
            <if test="userCustom.username!=null and userCustom.username!=''">
                and user.username like '%${userCustom.username}%'
            </if>
        </if>
    </sql>
    ......
</mapper>

5.3引用sql片段
在mapper.xml中定義的statement中引用sql片段


<!-- 用戶信息綜合查詢 
    #{UserCustom.sex}取出包裝對象中性別值
    ${UserCustom.username}取得pojo包裝對象中用戶名稱
    -->
    <select id="findUserList" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" 
                                resultType="cn.edu.hpu.mybatis.PO.UserCustom">
        select * from user 
        
        <!-- where標(biāo)簽可以自動去掉第一個(gè)and -->  
        <where>
            <!-- 應(yīng)用sql片段的id茵瘾,如果refid指定的id不再本mapper文件中礼华,需要前邊加namespace -->
            <include refid="query_user_where"></include>
            <!-- 在這里還可能要引用其他的sql片段 -->
        </where>
    </select>
    
    <!-- 用戶信息綜合查詢總數(shù) -->
    <select id="findUserCount" parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo" resultType="int">
        select count(*) from user 
 
 
        <!-- where標(biāo)簽可以自動去掉第一個(gè)and -->  
        <where>
            <!-- 應(yīng)用sql片段的id,如果refid指定的id不再本mapper文件中拗秘,需要前邊加namespace -->
            <include refid="query_user_where"></include>
            <!-- 在這里還可能要引用其他的sql片段 -->
        </where>
    </select>

測試:

//用戶信息綜合查詢
@Test
public void testFindUserList() throws Exception{
    
    SqlSession sqlSession=sqlSessionFactory.openSession();
    
    //創(chuàng)建UserMapper代理對象
    UserMapper userMapper=sqlSession.getMapper(UserMapper.class);
    
    //創(chuàng)建包裝對象卓嫂,設(shè)置查詢條件
    UserQueryVo userQueryVo=new UserQueryVo();
    UserCustom userCustom=new UserCustom();
    //由于這里使用動態(tài)sql,如果這里不設(shè)置某個(gè)值聘殖,條件不會拼接在sql中
    userCustom.setSex("男");
    userCustom.setUsername("張三");
    userQueryVo.setUserCustom(userCustom);
    
    //調(diào)用userMapper的方法
    List<UserCustom> users=userMapper.findUserList(userQueryVo);
    
    for (int i = 0; i < users.size(); i++) {
        UserCustom user=(UserCustom)users.get(i);
        System.out.println(user.getId()+":"+user.getUsername());
    }
}

測試結(jié)果:
1:張三
4:張三豐
輸出日志:

DEBUG [main] - Opening JDBC Connection
DEBUG [main] - Created connection 17689439.
DEBUG [main] - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.Connection@10deb5f]
DEBUG [main] - ==>  Preparing: select * from user 
DEBUG [main] - ==> Parameters: 
DEBUG [main] - <==      Total: 5

說明sql片段引用成功
小結(jié):
sql片段方便程序員進(jìn)行開發(fā)

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市行瑞,隨后出現(xiàn)的幾起案子奸腺,更是在濱河造成了極大的恐慌,老刑警劉巖血久,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件突照,死亡現(xiàn)場離奇詭異,居然都是意外死亡氧吐,警方通過查閱死者的電腦和手機(jī)讹蘑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門末盔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人座慰,你說我怎么就攤上這事陨舱。” “怎么了版仔?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵游盲,是天一觀的道長。 經(jīng)常有香客問我蛮粮,道長益缎,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任然想,我火速辦了婚禮莺奔,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘变泄。我一直安慰自己令哟,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布杖刷。 她就那樣靜靜地躺著励饵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪滑燃。 梳的紋絲不亂的頭發(fā)上役听,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天,我揣著相機(jī)與錄音表窘,去河邊找鬼典予。 笑死,一個(gè)胖子當(dāng)著我的面吹牛乐严,可吹牛的內(nèi)容都是我干的瘤袖。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼昂验,長吁一口氣:“原來是場噩夢啊……” “哼捂敌!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起既琴,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤占婉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后甫恩,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體逆济,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了奖慌。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片抛虫。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖简僧,靈堂內(nèi)的尸體忽然破棺而出建椰,到底是詐尸還是另有隱情,我是刑警寧澤涎劈,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布广凸,位于F島的核電站,受9級特大地震影響蛛枚,放射性物質(zhì)發(fā)生泄漏谅海。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一蹦浦、第九天 我趴在偏房一處隱蔽的房頂上張望扭吁。 院中可真熱鬧,春花似錦盲镶、人聲如沸侥袜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽枫吧。三九已至,卻和暖如春宇色,著一層夾襖步出監(jiān)牢的瞬間九杂,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工宣蠕, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留例隆,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓抢蚀,卻偏偏與公主長得像镀层,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子皿曲,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345

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