91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mybatis教程之動態sql語句_動力節點Java學院整理

發布時間:2020-08-29 22:38:31 來源:腳本之家 閱讀:134 作者:limingnihao 欄目:編程語言

有些時候,sql語句where條件中,需要一些安全判斷,例如按某一條件查詢時如果傳入的參數是空,此時查詢出的結果很可能是空的,也許我們需要參數為空時,是查出全部的信息。使用Oracle的序列、mysql的函數生成Id。這時我們可以使用動態sql。

下文均采用mysql語法和函數(例如字符串鏈接函數CONCAT)。

selectKey 標簽

在insert語句中,在Oracle經常使用序列、在MySQL中使用函數來自動生成插入表的主鍵,而且需要方法能返回這個生成主鍵。使用myBatis的selectKey標簽可以實現這個效果。

下面例子,使用mysql數據庫自定義函數nextval('student'),用來生成一個key,并把他設置到傳入的實體類中的studentId屬性上。所以在執行完此方法后,邊可以通過這個實體類獲取生成的key。

<!-- 插入學生 自動主鍵--> 
<insert id="createStudentAutoKey" parameterType="bjpowernodestudentmanagerdatamodelStudentEntity" keyProperty="studentId"> 
  <selectKey keyProperty="studentId" resultType="String" order="BEFORE"> 
    select nextval('student') 
  </selectKey> 
  INSERT INTO STUDENT_TBL(STUDENT_ID, 
              STUDENT_NAME, 
              STUDENT_SEX, 
              STUDENT_BIRTHDAY, 
              STUDENT_PHOTO, 
              CLASS_ID, 
              PLACE_ID) 
  VALUES (#{studentId}, 
      #{studentName}, 
      #{studentSex}, 
      #{studentBirthday}, 
      #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=orgapacheibatistypeBlobTypeHandler}, 
      #{classId}, 
      #{placeId}) 
</insert> 

調用接口方法,和獲取自動生成key

StudentEntity entity = new StudentEntity(); 
entity.setStudentName("黎明你好"); 
entity.setStudentSex(1); 
entity.setStudentBirthday(DateUtil.parse("1985-05-28")); 
entity.setClassId("20000001"); 
entity.setPlaceId("70000001"); 
this.dynamicSqlMapper.createStudentAutoKey(entity); 
System.out.println("新增學生ID: " + entity.getStudentId()); 

selectKey語句屬性配置細節:

屬性
描述
取值
keyProperty
selectKey 語句生成結果需要設置的屬性。
 
resultType
生成結果類型,MyBatis 允許使用基本的數據類型,包括String 、int類型。
 
order
1:BEFORE,會先選擇主鍵,然后設置keyProperty,再執行insert語句;
2:AFTER,就先運行insert 語句再運行selectKey 語句。
BEFORE
AFTER
statementType
MyBatis 支持STATEMENT,PREPARED和CALLABLE 的語句形式, 對應Statement ,PreparedStatement 和CallableStatement 響應
STATEMENT
PREPARED
CALLABLE

if標簽

 if標簽可用在許多類型的sql語句中,我們以查詢為例。首先看一個很普通的查詢:

<!-- 查詢學生list,like姓名 --> 
<select id="getStudentListLikeName" parameterType="StudentEntity" resultMap="studentResultMap"> 
  SELECT * from STUDENT_TBL ST  
WHERE ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName}),'%') 
</select> 
但是此時如果studentName或studentSex為null,此語句很可能報錯或查詢結果為空。此時我們使用if動態sql語句先進行判斷,如果值為null或等于空字符串,我們就不進行此條件的判斷,增加靈活性。
參數為實體類StudentEntity。將實體類中所有的屬性均進行判斷,如果不為空則執行判斷條件。
<!-- 2 if(判斷參數) - 將實體類不為空的屬性作為where條件 --> 
<select id="getStudentList_if" resultMap="resultMap_studentEntity" parameterType="bjpowernode.student.manager.data.model.StudentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
     ST.PLACE_ID 
   FROM STUDENT_TBL ST  
   WHERE 
  <if test="studentName !=null "> 
    ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%') 
  </if> 
  <if test="studentSex != null and studentSex != '' "> 
    AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} 
  </if> 
  <if test="studentBirthday != null "> 
    AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} 
  </if> 
  <if test="classId != null and classId!= '' "> 
    AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} 
  </if> 
  <if test="classEntity != null and classEntityclassId !=null and classEntityclassId !=' ' "> 
    AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} 
  </if> 
  <if test="placeId != null and placeId != '' "> 
    AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} 
  </if> 
  <if test="placeEntity != null and placeEntityplaceId != null and placeEntityplaceId != '' "> 
    AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} 
  </if> 
  <if test="studentId != null and studentId != '' "> 
    AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} 
  </if>  
</select> 

使用時比較靈活, new一個這樣的實體類,我們需要限制那個條件,只需要附上相應的值就會where這個條件,相反不去賦值就可以不在where中判斷。

public void select_test_2_1() { 
  StudentEntity entity = new StudentEntity(); 
  entity.setStudentName(""); 
  entity.setStudentSex(1); 
  entity.setStudentBirthday(DateUtil.parse("1985-05-28")); 
  entity.setClassId("20000001"); 
  //entity.setPlaceId("70000001"); 
  List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity); 
  for (StudentEntity e : list) { 
    System.out.println(e.toString()); 
  } 
} 

if + where 的條件判斷

當where中的條件使用的if標簽較多時,這樣的組合可能會導致錯誤。我們以在3.1中的查詢語句為例子,當java代碼按如下方法調用時:  

@Test 
public void select_test_2_1() { 
  StudentEntity entity = new StudentEntity(); 
  entity.setStudentName(null); 
  entity.setStudentSex(1); 
  List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity); 
  for (StudentEntity e : list) { 
    System.out.println(e.toString()); 
  } 
} 

如果上面例子,參數studentName為null,將不會進行STUDENT_NAME列的判斷,則會直接導“WHERE AND”關鍵字多余的錯誤SQL。

這時我們可以使用where動態語句來解決。這個“where”標簽會知道如果它包含的標簽中有返回值的話,它就插入一個‘where'。此外,如果標簽返回的內容是以AND 或OR 開頭的,則它會剔除掉。

上面例子修改為:

<!-- 3 select - where/if(判斷參數) - 將實體類不為空的屬性作為where條件 --> 
<select id="getStudentList_whereIf" resultMap="resultMap_studentEntity" parameterType="bjpowernode.student.manager.data.model.StudentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
      ST.PLACE_ID 
   FROM STUDENT_TBL ST  
  <where> 
    <if test="studentName !=null "> 
      ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%') 
    </if> 
    <if test="studentSex != null and studentSex != '' "> 
      AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} 
    </if> 
    <if test="studentBirthday != null "> 
      AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} 
    </if> 
    <if test="classId != null and classId!= '' "> 
      AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} 
    </if> 
    <if test="classEntity != null and classEntityclassId !=null and classEntityclassId !=' ' "> 
      AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} 
    </if> 
    <if test="placeId != null and placeId != '' "> 
      AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} 
    </if> 
    <if test="placeEntity != null and placeEntityplaceId != null and placeEntityplaceId != '' "> 
      AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} 
    </if> 
    <if test="studentId != null and studentId != '' "> 
      AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} 
    </if> 
  </where>  
</select> 

if + set 的更新語句

當update語句中沒有使用if標簽時,如果有一個參數為null,都會導致錯誤。

當在update語句中使用if標簽時,如果前面的if沒有執行,則或導致逗號多余錯誤。使用set標簽可以將動態的配置SET 關鍵字,和剔除追加到條件末尾的任何不相關的逗號。

使用if+set標簽修改后,如果某項為null則不進行更新,而是保持數據庫原值。如下示例:

<!-- 4 if/set(判斷參數) - 將實體類不為空的屬性更新 --> 
<update id="updateStudent_if_set" parameterType="bjpowernode.student.manager.data.model.StudentEntity"> 
  UPDATE STUDENT_TBL 
  <set> 
    <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="studentPhoto != null "> 
      STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=org.apache.ibatis.type.BlobTypeHandler}, 
    </if> 
    <if test="classId != '' "> 
      STUDENT_TBL.CLASS_ID = #{classId} 
    </if> 
    <if test="placeId != '' "> 
      STUDENT_TBL.PLACE_ID = #{placeId} 
    </if> 
  </set> 
  WHERE STUDENT_TBL.STUDENT_ID = #{studentId};   
</update> 
 

if + trim代替where/set標簽

trim是更靈活的去處多余關鍵字的標簽,他可以實踐where和set的效果。

trim代替where

<!-- 5.1 if/trim代替where(判斷參數) - 將實體類不為空的屬性作為where條件 --> 
<select id="getStudentList_if_trim" resultMap="resultMap_studentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
      ST.PLACE_ID 
   FROM STUDENT_TBL ST  
  <trim prefix="WHERE" prefixOverrides="AND|OR"> 
    <if test="studentName !=null "> 
      ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%') 
    </if> 
    <if test="studentSex != null and studentSex != '' "> 
      AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} 
    </if> 
    <if test="studentBirthday != null "> 
      AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} 
    </if> 
    <if test="classId != null and classId!= '' "> 
      AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} 
    </if> 
    <if test="classEntity != null and classEntityclassId !=null and classEntityclassId !=' ' "> 
      AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} 
    </if> 
    <if test="placeId != null and placeId != '' "> 
      AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} 
    </if> 
    <if test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' "> 
      AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} 
    </if> 
    <if test="studentId != null and studentId != '' "> 
      AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} 
    </if> 
  </trim>   
</select> 

trim代替set

<!-- 2 if/trim代替set(判斷參數) - 將實體類不為空的屬性更新 --> 
<update id="updateStudent_if_trim" parameterType="bjpowernode.student.manager.data.model.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="studentPhoto != null "> 
      STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=org.apache.ibatis.type.BlobTypeHandler}, 
    </if> 
    <if test="classId != '' "> 
      STUDENT_TBL.CLASS_ID = #{classId}, 
    </if> 
    <if test="placeId != '' "> 
      STUDENT_TBL.PLACE_ID = #{placeId} 
    </if> 
  </trim> 
  WHERE STUDENT_TBLSTUDENT_ID = #{studentId} 
</update> 

choose (when, otherwise)

有時候我們并不想應用所有的條件,而只是想從多個選項中選擇一個。而使用if標簽時,只要test中的表達式為true,就會執行if標簽中的條件。MyBatis提供了choose 元素。if標簽是與(and)的關系,而choose比傲天是或(or)的關系。

choose標簽是按順序判斷其內部when標簽中的test條件出否成立,如果有一個成立,則choose結束。當choose中所有when的條件都不滿則時,則執行otherwise中的sql。類似于Java 的switch 語句,choose為switch,when為case,otherwise則為default。

例如下面例子,同樣把所有可以限制的條件都寫上,方面使用。choose會從上到下選擇一個when標簽的test為true的sql執行。安全考慮,我們使用where將choose包起來,放置關鍵字多于錯誤。

<!-- 6 choose(判斷參數) - 按順序將實體類第一個不為空的屬性作為where條件 --> 
<select id="getStudentList_choose" resultMap="resultMap_studentEntity" parameterType="bjpowernode.student.manager.data.model.StudentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
      ST.PLACE_ID 
   FROM STUDENT_TBL ST  
  <where> 
    <choose> 
      <when test="studentName !=null "> 
        ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%') 
      </when > 
      <when test="studentSex != null and studentSex != '' "> 
        AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} 
      </when > 
      <when test="studentBirthday != null "> 
        AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} 
      </when > 
      <when test="classId != null and classId!= '' "> 
        AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} 
      </when > 
      <when test="classEntity != null and classEntity.classId !=null and classEntity.classId !=' ' "> 
        AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} 
      </when > 
      <when test="placeId != null and placeId != '' "> 
        AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} 
      </when > 
      <when test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' "> 
        AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} 
      </when > 
      <when test="studentId != null and studentId != '' "> 
        AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} 
      </when > 
      <otherwise> 
      </otherwise> 
    </choose> 
  </where>  
</select> 

foreach

對于動態SQL 非常必須的,主是要迭代一個集合,通常是用于IN 條件。List 實例將使用“list”做為鍵,數組實例以“array” 做為鍵。

foreach元素是非常強大的,它允許你指定一個集合,聲明集合項和索引變量,它們可以用在元素體內。它也允許你指定開放和關閉的字符串,在迭代之間放置分隔符。這個元素是很智能的,它不會偶然地附加多余的分隔符。

注意:你可以傳遞一個List實例或者數組作為參數對象傳給MyBatis。當你這么做的時候,MyBatis會自動將它包裝在一個Map中,用名稱在作為鍵。List實例將會以“list”作為鍵,而數組實例將會以“array”作為鍵。

這個部分是對關于XML配置文件和XML映射文件的而討論的。下一部分將詳細討論Java API,所以你可以得到你已經創建的最有效的映射。

參數為array示例的寫法

接口的方法聲明:

復制代碼 代碼如下:
public List<StudentEntity> getStudentListByClassIds_foreach_array(String[] classIds); 
 

動態SQL語句:

<!— 7.1 foreach(循環array參數) - 作為where中in的條件 --> 
<select id="getStudentListByClassIds_foreach_array" resultMap="resultMap_studentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
      ST.PLACE_ID 
   FROM STUDENT_TBL ST 
   WHERE STCLASS_ID IN  
   <foreach collection="array" item="classIds" open="(" separator="," close=")"> 
    #{classIds} 
   </foreach> 
</select> 

測試代碼,查詢學生中,在20000001、20000002這兩個班級的學生:

@Test 
public void test7_foreach() { 
  String[] classIds = { "20000001", "20000002" }; 
  List<StudentEntity> list = this.dynamicSqlMapper.getStudentListByClassIds_foreach_array(classIds); 
  for (StudentEntity e : list) { 
    System.out.println(e.toString()); 
  } 
<p>}<span > </span></p> 

參數為list示例的寫法

接口的方法聲明:

復制代碼 代碼如下:
public List<StudentEntity> getStudentListByClassIds_foreach_list(List<String> classIdList);
  

動態SQL語句:

<!-- 7.2 foreach(循環List<String>參數) - 作為where中in的條件 --> 
<select id="getStudentListByClassIds_foreach_list" resultMap="resultMap_studentEntity"> 
  SELECT ST.STUDENT_ID, 
      ST.STUDENT_NAME, 
      ST.STUDENT_SEX, 
      ST.STUDENT_BIRTHDAY, 
      ST.STUDENT_PHOTO, 
      ST.CLASS_ID, 
     ST.PLACE_ID 
   FROM STUDENT_TBL ST 
   WHERE STCLASS_ID IN  
   <foreach collection="list" item="classIdList" open="(" separator="," close=")"> 
    #{classIdList} 
   </foreach> 
</select> 

測試代碼,查詢學生中,在20000001、20000002這兩個班級的學生:

@Test 
public void test7_2_foreach() { 
  ArrayList<String> classIdList = new ArrayList<String>(); 
  classIdList.add("20000001"); 
  classIdList.add("20000002"); 
  List<StudentEntity> list = this.dynamicSqlMapper.getStudentListByClassIds_foreach_list(classIdList); 
  for (StudentEntity e : list) { 
    System.out.println(e.toString()); 
  } 
} 
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开鲁县| 石渠县| 含山县| 淅川县| 铜陵市| 九龙城区| 饶平县| 稷山县| 简阳市| 北票市| 克拉玛依市| 五寨县| 河南省| 南部县| 改则县| 舟山市| 明溪县| 上杭县| 济宁市| 彭山县| 马关县| 东兴市| 远安县| 长宁县| 颍上县| 景宁| 电白县| 蚌埠市| 博兴县| 文安县| 孟村| 云阳县| 翼城县| 酒泉市| 涟源市| 绍兴市| 雅江县| 龙江县| 巫溪县| 吉隆县| 四子王旗|