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

溫馨提示×

溫馨提示×

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

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

<include>標簽在mybatis中的作用是什么

發布時間:2021-02-20 16:27:59 來源:億速云 閱讀:1922 作者:Leah 欄目:開發技術

<include>標簽在mybatis中的作用是什么?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

<include>標簽在mybatis中的作用是什么

MyBatis中sql標簽定義SQL片段,include標簽引用,可以復用SQL片段

sql標簽中id屬性對應include標簽中的refid屬性。通過include標簽將sql片段和原sql片段進行拼接成一個完整的sql語句進行執行。

<sql id="sqlid">
  res_type_id,res_type
</sql>
<select id="selectbyId" resultType="com.property.vo.PubResTypeVO">
  select
  <include refid="sqlid"/>
  from pub_res_type
</select>

引用同一個xml中的sql片段

<include refid="sqlid"/>

引用公用的sql片段

<include refid="namespace.sqlid"/>

include標簽中也可以用property標簽,用以指定自定義屬性。

在sql標簽中通過${}取出對應的屬性值。

<select id="queryPubResType" parameterType="com.property.vo.PubResTypeVO" resultMap="PubResTypeList">
  select a.res_type_id,
  <include refid="com.common.dao.FunctionDao.SF_GET_LNG_RES_TYPE">
    <property name="AI_RES_TYPE_ID" value="a.res_type_id"/>
    <property name="lng" value="#{lngId}"/>
    <property name="female" value="'女'"/>
  </include> as res_type
  from  pub_res_type a
</select>

使用resultType進行輸出映射,只有查詢出來的列名和pojo中的屬性名一致,該列才可以映射成功。

如果查詢出來的列名和pojo的屬性名不一致,通過定義一個resultMap對列名和pojo屬性名之間作一個映射關系。

resultMap:適合使用返回值是自定義實體類的情況

resultType:適合使用返回值得數據類型是非自定義的,即jdk的提供的類型

補充:mybatis include標簽傳參特性測試

1 前言

mybatis的include標簽主要是用于sql語句的可重用,并且可以接收參數來生成動態sql。為了進一步了解include標簽的傳參特性,我寫了一段測試代碼來測試一下include標簽的特性。

2 測試代碼

mapper.xml

	<!--需要include的代碼塊-->
	<sql id="luck">
		#{luck}||'${luck}'
	</sql>
	<!--property標簽name屬性和參數名一樣,但值不同-->
	<select id="test1" resultType="java.lang.String">
		select
		<include refid="luck">
			<property name="luck" value="lucktheuniverse"/>
		</include>
		from dual
	</select>
	<!--property標簽name屬性和參數名一樣,但值為#號方式傳值-->
	<select id="test2" resultType="java.lang.String">
		select
		<include refid="luck">
			<property name="luck" value="#{luck}"/>
		</include>
		from dual
	</select>
	<!--property標簽name屬性和參數名一樣,但值為$方式傳值-->
	<select id="test3" resultType="java.lang.String">
		select
		<include refid="luck">
			<property name="luck" value="${luck}"/>
		</include>
		from dual
	</select>
	<!--property標簽name屬性和參數名不同-->
	<select id="test4" resultType="java.lang.String">
		select
		<include refid="luck">
			<property name="luck1" value="lucktheuniverse"/>
		</include>
		from dual
	</select>

mapper.java

String test1(@Param(value = "luck") String luck);
String test2(@Param(value = "luck") String luck);
String test3(@Param(value = "luck") String luck);
String test4(@Param(value = "luck") String luck);

test.java

String test1 = mapper.test1("luck123");
String test2 = mapper.test2("luck123");
String test3 = mapper.test1("luck123");
String test4 = mapper.test2("luck123");

測試結果

test1: luck123lucktheuniverse
test2: 報錯
test3: luck123luck123
test4: luck123luck123

3 結論

1.采用${}取參數時,include標簽的property屬性的優先級要高于外圍mapper的參數;

2.采用#{}取參數只能取到外圍mapper傳過來的參數。

4 test2報錯原因

test2報錯是因為,include中${luck}取了property中的#{luck},但是#{}自帶了雙引號。所以得到的sql就成了

select #{luck}||'#{luck}' from dual

最終轉化為preparedStatement,會報java.sql.SQLException: 無效的列索引

select ?||'?' from dual

'?'是不能被單引號 ' 包圍的

所以要謹慎,不要在#{}傳入的參數周圍加上單引號

把include代碼塊修改為,可以得到輸出為luck123luck123

 <sql id="luck">
 #{luck}||${luck}
 </sql>

關于<include>標簽在mybatis中的作用是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

新乐市| 元氏县| 海原县| 玉环县| 太康县| 永平县| 毕节市| 神木县| 西昌市| 香格里拉县| 绍兴市| 寻乌县| 昌图县| 鄯善县| 揭东县| 西青区| 浦北县| 湾仔区| 九江市| 布拖县| 廊坊市| 大余县| 铅山县| 宜兰县| 鹿泉市| 客服| 同德县| 城步| 施秉县| 确山县| 许昌县| 年辖:市辖区| 墨竹工卡县| 曲阜市| 浪卡子县| 崇明县| 汝阳县| 临西县| 扬中市| 张家界市| 应城市|