最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

MyBatis動(dòng)態(tài)SQL標(biāo)簽用法實(shí)例詳解

 更新時(shí)間:2017年07月09日 10:37:48   作者:luojishan1  
本文通過(guò)實(shí)例代碼給大家介紹了MyBatis動(dòng)態(tài)SQL標(biāo)簽用法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧

1、動(dòng)態(tài)SQL片段

通過(guò)SQL片段達(dá)到代碼復(fù)用

 <!-- 動(dòng)態(tài)條件分頁(yè)查詢 --> 
    <sql id="sql_count"> 
        select count(*) 
    </sql> 
    <sql id="sql_select"> 
        select * 
    </sql> 
    <sql id="sql_where"> 
        from icp 
        <dynamic prepend="where"> 
            <isNotEmpty prepend="and" property="name"> 
                name like '%$name$%' 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="path"> 
                path like '%path$%' 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="area_id"> 
                area_id = #area_id# 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="hided"> 
                hided = #hided# 
            </isNotEmpty> 
        </dynamic> 
        <dynamic prepend=""> 
            <isNotNull property="_start"> 
                <isNotNull property="_size"> 
                    limit #_start#, #_size# 
                </isNotNull> 
            </isNotNull> 
        </dynamic> 
    </sql> 
    <select id="findByParamsForCount" parameterClass="map" resultClass="int"> 
        <include refid="sql_count"/> 
        <include refid="sql_where"/> 
    </select> 
    <select id="findByParams" parameterClass="map" resultMap="icp.result_base"> 
        <include refid="sql_select"/> 
        <include refid="sql_where"/> 
    </select>

2、數(shù)字范圍查詢

所傳參數(shù)名稱是捏造所得,非數(shù)據(jù)庫(kù)字段,比如_img_size_ge、_img_size_lt字段                   

 <isNotEmpty prepend="and" property="_img_size_ge"> 
                <![CDATA[ 
                img_size >= #_img_size_ge# 
            ]]> 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="_img_size_lt"> 
                <![CDATA[ 
                img_size < #_img_size_lt# 
            ]]> 
            </isNotEmpty>

多次使用一個(gè)參數(shù)也是允許的      

    <isNotEmpty prepend="and" property="_now"> 
                <![CDATA[ 
                      execplantime >= #_now# 
                   ]]> 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="_now"> 
                <![CDATA[ 
                      closeplantime <= #_now# 
                   ]]> 
            </isNotEmpty>

      3、時(shí)間范圍查詢           

   <isNotEmpty prepend="" property="_starttime"> 
                <isNotEmpty prepend="and" property="_endtime"> 
                    <![CDATA[ 
                    createtime >= #_starttime# 
                    and createtime < #_endtime# 
                 ]]> 
                </isNotEmpty> 
            </isNotEmpty> 

  4、in查詢                   

  <isNotEmpty prepend="and" property="_in_state"> 
                state in ('$_in_state$') 
            </isNotEmpty>

 5、like查詢                 

  <isNotEmpty prepend="and" property="chnameone"> 
                (chnameone like '%$chnameone$%' or spellinitial like '%$chnameone$%') 
            </isNotEmpty> 
            <isNotEmpty prepend="and" property="chnametwo"> 
                chnametwo like '%$chnametwo$%' 
            </isNotEmpty> 

6、or條件                  

 <isEqual prepend="and" property="_exeable" compareValue="N"> 
                <![CDATA[ 
                (t.finished='11'  or t.failure=3) 
            ]]> 
            </isEqual>
 
            <isEqual prepend="and" property="_exeable" compareValue="Y"> 
                <![CDATA[ 
                t.finished in ('10','19') and t.failure<3 
            ]]> 
            </isEqual>

7、where子查詢              

 <isNotEmpty prepend="" property="exprogramcode"> 
                <isNotEmpty prepend="" property="isRational"> 
                    <isEqual prepend="and" property="isRational" compareValue="N"> 
                        code not in 
                        (select t.contentcode 
                        from cms_ccm_programcontent t 
                        where t.contenttype='MZNRLX_MA' 
                        and t.programcode = #exprogramcode#) 
                    </isEqual> 
                </isNotEmpty> 
            </isNotEmpty>
    <select id="findByProgramcode" parameterClass="string" resultMap="cms_ccm_material.result"> 
        select * 
        from cms_ccm_material 
        where code in 
        (select t.contentcode 
        from cms_ccm_programcontent t 
        where t.contenttype = 'MZNRLX_MA' 
        and programcode = #value#) 
        order by updatetime desc 
    </select>

    9、函數(shù)的使用 

  <!-- 添加 --> 
    <insert id="insert" parameterClass="RuleMaster"> 
        insert into rulemaster( 
        name, 
        createtime, 
        updatetime, 
        remark 
        ) values ( 
        #name#, 
        now(), 
        now(), 
        #remark# 
        ) 
        <selectKey keyProperty="id" resultClass="long"> 
            select LAST_INSERT_ID() 
        </selectKey> 
    </insert> 
    <!-- 更新 --> 
    <update id="update" parameterClass="RuleMaster"> 
        update rulemaster set 
        name = #name#, 
        updatetime = now(), 
        remark = #remark# 
        where id = #id# 
    </update>

10、map結(jié)果集  

 <!-- 動(dòng)態(tài)條件分頁(yè)查詢 --> 
    <sql id="sql_count"> 
        select count(a.*) 
    </sql> 
    <sql id="sql_select"> 
        select a.id        vid, 
        a.img       imgurl, 
        a.img_s     imgfile, 
        b.vfilename vfilename, 
  b.name      name, 
        c.id        sid, 
        c.url       url, 
        c.filename  filename, 
        c.status    status 
    </sql> 
    <sql id="sql_where"> 
        From secfiles c, juji b, videoinfo a 
        where 
        a.id = b. videoid 
        and b.id = c.segmentid 
        and c.status = 0 
        order by a.id asc,b.id asc,c.sortnum asc 
        <dynamic prepend=""> 
            <isNotNull property="_start"> 
                <isNotNull property="_size"> 
                    limit #_start#, #_size# 
                </isNotNull> 
            </isNotNull> 
        </dynamic> 
    </sql> 
    <!-- 返回沒(méi)有下載的記錄總數(shù) --> 
    <select id="getUndownFilesForCount" parameterClass="map" resultClass="int"> 
        <include refid="sql_count"/> 
        <include refid="sql_where"/> 
    </select> 
    <!-- 返回沒(méi)有下載的記錄 --> 
    <select id="getUndownFiles" parameterClass="map" resultClass="java.util.HashMap"> 
        <include refid="sql_select"/> 
        <include refid="sql_where"/> 
    </select>

11、trim

 trim是更靈活的去處多余關(guān)鍵字的標(biāo)簽,他可以實(shí)踐where和set的效果。

 where例子的等效trim語(yǔ)句:

Xml代碼 

<!-- 查詢學(xué)生list,like姓名,=性別 -->  
<select id="getStudentListWhere" parameterType="StudentEntity" resultMap="studentResultMap">  
  SELECT * from STUDENT_TBL ST  
  <trim prefix="WHERE" prefixOverrides="AND|OR">  
    <if test="studentName!=null and studentName!='' ">  
      ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName}),'%')  
    </if>  
    <if test="studentSex!= null and studentSex!= '' ">  
      AND ST.STUDENT_SEX = #{studentSex}  
    </if>  
  </trim>  
</select> 

set例子的等效trim語(yǔ)句:

Xml代碼 

<!-- 更新學(xué)生信息 -->  
<update id="updateStudent" parameterType="StudentEntity">  
  UPDATE STUDENT_TBL  
  <trim prefix="SET" suffixOverrides=",">  
    <if test="studentName!=null and studentName!='' ">  
      STUDENT_TBL.STUDENT_NAME = #{studentName},  
    </if>  
    <if test="studentSex!=null and studentSex!='' ">  
      STUDENT_TBL.STUDENT_SEX = #{studentSex},  
    </if>  
    <if test="studentBirthday!=null ">  
      STUDENT_TBL.STUDENT_BIRTHDAY = #{studentBirthday},  
    </if>  
    <if test="classEntity!=null and classEntity.classID!=null and classEntity.classID!='' ">  
      STUDENT_TBL.CLASS_ID = #{classEntity.classID}  
    </if>  
  </trim>  
  WHERE STUDENT_TBL.STUDENT_ID = #{studentID};  
</update>  

12、choose (when, otherwise)

         有時(shí)候我們并不想應(yīng)用所有的條件,而只是想從多個(gè)選項(xiàng)中選擇一個(gè)。MyBatis提供了choose 元素,按順序判斷when中的條件出否成立,如果有一個(gè)成立,則choose結(jié)束。當(dāng)choose中所有when的條件都不滿則時(shí),則執(zhí)行 otherwise中的sql。類似于Java 的switch 語(yǔ)句,choose為switch,when為case,otherwise則為default。

         if是與(and)的關(guān)系,而choose是或(or)的關(guān)系。

         例如下面例子,同樣把所有可以限制的條件都寫(xiě)上,方面使用。選擇條件順序,when標(biāo)簽的從上到下的書(shū)寫(xiě)順序:

Xml代碼 

<!-- 查詢學(xué)生list,like姓名、或=性別、或=生日、或=班級(jí),使用choose -->  
<select id="getStudentListChooseEntity" parameterType="StudentEntity" resultMap="studentResultMap">  
  SELECT * from STUDENT_TBL ST  
  <where>  
    <choose>  
      <when test="studentName!=null and studentName!='' ">  
          ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName}),'%')  
      </when>  
      <when test="studentSex!= null and studentSex!= '' ">  
          AND ST.STUDENT_SEX = #{studentSex}  
      </when>  
      <when test="studentBirthday!=null">  
        AND ST.STUDENT_BIRTHDAY = #{studentBirthday}  
      </when>  
      <when test="classEntity!=null and classEntity.classID !=null and classEntity.classID!='' ">  
        AND ST.CLASS_ID = #{classEntity.classID}  
      </when>  
      <otherwise>  
      </otherwise>  
    </choose>  
  </where>  
</select> 

以上所述是小編給大家介紹的MyBatis動(dòng)態(tài)SQL標(biāo)簽用法實(shí)例詳解,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!

相關(guān)文章

  • mybatis多個(gè)接口參數(shù)的注解使用方式(@Param)

    mybatis多個(gè)接口參數(shù)的注解使用方式(@Param)

    這篇文章主要介紹了mybatis多個(gè)接口參數(shù)的注解使用方式(@Param),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-10-10
  • Java?回調(diào)callback舉例詳解

    Java?回調(diào)callback舉例詳解

    這篇文章主要介紹了Java?回調(diào)callback舉例詳解,軟件模塊之間總是存在一定的接口,從調(diào)用方式上,可以把他們分為三類:同步調(diào)用、回調(diào)和異步調(diào)用
    2022-09-09
  • SpringSecurity導(dǎo)致SpringBoot跨域失效的問(wèn)題解決

    SpringSecurity導(dǎo)致SpringBoot跨域失效的問(wèn)題解決

    本文主要介紹了SpringSecurity導(dǎo)致SpringBoot跨域失效的問(wèn)題解決,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-01-01
  • Mybatis 插入和刪除批處理操作

    Mybatis 插入和刪除批處理操作

    在操作數(shù)據(jù)庫(kù)時(shí),經(jīng)常會(huì)碰到批量插入、批量刪除的情況,直接執(zhí)行SQL語(yǔ)句還好做一點(diǎn),當(dāng)使用Mybatis進(jìn)行批量插入、批量刪除時(shí)會(huì)有一些問(wèn)題。下面對(duì)使用Mybatis批量插入,批量刪除進(jìn)行介紹
    2016-12-12
  • Spring Boot 直接用jar運(yùn)行項(xiàng)目的方法

    Spring Boot 直接用jar運(yùn)行項(xiàng)目的方法

    這篇文章主要介紹了Spring Boot 直接用jar運(yùn)行項(xiàng)目的方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下
    2018-02-02
  • java文件操作工具類

    java文件操作工具類

    這篇文章主要為大家介紹了一個(gè)非常詳細(xì)的java文件操作工具類,具有很強(qiáng)的實(shí)用性,感興趣的小伙伴們可以參考一下
    2016-05-05
  • kibana中ES修改某個(gè)字段類型問(wèn)題小結(jié)

    kibana中ES修改某個(gè)字段類型問(wèn)題小結(jié)

    這篇文章主要介紹了kibana中ES修改某個(gè)字段類型問(wèn)題,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2023-06-06
  • gateway、webflux、reactor-netty請(qǐng)求日志輸出方式

    gateway、webflux、reactor-netty請(qǐng)求日志輸出方式

    這篇文章主要介紹了gateway、webflux、reactor-netty請(qǐng)求日志輸出方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • Spring Boot 中的 Spring Cloud Feign的原理解析

    Spring Boot 中的 Spring Cloud Feign的原

    Spring Cloud Feign 是 Spring Cloud 中的一個(gè)組件,它可以幫助我們實(shí)現(xiàn)聲明式的 REST 客戶,這篇文章主要介紹了Spring Boot 中的 Spring Cloud Feign,需要的朋友可以參考下
    2023-07-07
  • Spring讀取配置文件屬性實(shí)現(xiàn)方法

    Spring讀取配置文件屬性實(shí)現(xiàn)方法

    這篇文章主要介紹了Spring讀取配置文件屬性實(shí)現(xiàn)方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-04-04

最新評(píng)論

连州市| 岚皋县| 澳门| 吉安市| 余庆县| 鹤峰县| 三江| 永新县| 安乡县| 博野县| 鄄城县| 晴隆县| 监利县| 台中市| 日土县| 乌拉特前旗| 深水埗区| 红河县| 蓝山县| 营口市| 疏勒县| 新和县| 疏附县| 友谊县| 肥乡县| 阿尔山市| 廊坊市| 武隆县| 沂水县| 乌鲁木齐县| 济源市| 化德县| 咸阳市| 冀州市| 大丰市| 京山县| 桦川县| 大埔县| 沭阳县| 泰顺县| 湘潭市|