溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MyBatis的原理和使用

發(fā)布時(shí)間:2021-06-29 14:56:38 來源:億速云 閱讀:134 作者:chen 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“MyBatis的原理和使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“MyBatis的原理和使用”吧!

依賴:jar

<dependency>
  <groupId>org.mybatis</groupId>
  <artifactId>mybatis</artifactId>
  <version>3.2.7</version>
</dependency>

<dependency>
  <groupId>org.mybatis</groupId>
  <artifactId>mybatis-spring</artifactId>
  <version>1.2.2</version>
</dependency>

1.批量插入效率最高的一種 返回主鍵ID:

<insert id="insertBatch" useGeneratedKeys="true" 
keyProperty="releaseDetailsId" keyColumn="RELEASE_DETAILS_ID" 
parameterType="java.util.List" >
    INSERT INTO t_user
            (id, name, del_flag)
    VALUES
    <foreach collection ="list" item="user" separator =",">
         (#{user.id}, #{user.name}, #{user.delFlag})
    </foreach >
</insert>

特殊符號(hào)處理:

其實(shí)就是xml特殊符號(hào),轉(zhuǎn)義的方式。 

&lt; < 
&gt; > 
&lt;&gt; <> 
&amp; & 
&apos; ’ 
&quot; ”


比如: 

select (case when (UNIX_TIMESTAMP(now())-UNIX_TIMESTAMP(ur.offline_time)-5*60*1000)&gt;0 then '1' else '0' end) as offline_flag from ……

使用<![CDATA[ sql語句]]>符號(hào)進(jìn)行說明,將此類符號(hào)不進(jìn)行解析 。 
比如: 

<isEqual property="offline_flag" compareValue="0"> 
and <![CDATA[((UNIX_TIMESTAMP(now())-UNIX_TIMESTAMP(ur.offline_time)-5*60*1000)<=0 or u.record_id=0)]]> 
</isEqual>

如果是參數(shù)字段,可以用ibatis的語法。 

<isEqual> 相等。 
<isNotEqual> 不等。 
<isGreaterThan> 大于 
<isGreaterEqual> 大于等于 
<isLessThan> 小于 
<isLessEqual> 小于等于


比如: 
 

<isNotEmpty prepend="AND" property="username"> 
u.username like '%$username$%' 
</isNotEmpty> 
<isNotEmpty prepend="AND" property="location"> 
concat(u.country,u.province,u.city) like '%$location$%' 
</isNotEmpty> 
<isEqual property="offline_flag" compareValue="1"> 
and (UNIX_TIMESTAMP(now())-UNIX_TIMESTAMP(ur.offline_time)-5*60*1000)&gt;0 
</isEqual> 
<isEqual property="offline_flag" compareValue="0"> 
and <![CDATA[((UNIX_TIMESTAMP(now())-UNIX_TIMESTAMP(ur.offline_time)-5*60*1000)<=0 or u.record_id=0)]]> 
</isEqual> 
<!-- sort --> 
<isEqual property="sort_onlinetime" compareValue="asc"> 
order by u.online_time asc 
</isEqual> 
<isEqual property="sort_onlinetime" compareValue="desc"> 
order by u.online_time desc 
</isEqual> 
<isEqual property="sort_registtime" compareValue="asc"> 
order by u.register_time asc 
</isEqual> 
<isEqual property="sort_registtime" compareValue="desc"> 
order by u.register_time desc 
</isEqual> 
<isEqual property="sort_appversion" compareValue="asc"> 
order by u.app_version asc 
</isEqual> 
<isEqual property="sort_appversion" compareValue="desc"> 
order by u.app_version desc 
</isEqual>

到此,相信大家對(duì)“MyBatis的原理和使用”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI