基於mybatis中<include>標簽的作用說明
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>
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。
推薦閱讀:
- mybatis中映射文件include標簽的應用
- MyBatis在DAO層定義接口返回類型泛型無效的解決
- 淺談Mybatis之參數傳遞的幾種姿勢
- 解讀Mapper與Mapper.xml文件之間匹配的問題
- mybatis3中@SelectProvider傳遞參數方式