基于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">
s_type_id,
<include refid="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
使⽤resultType进⾏输出映射,只有查询出来的列名和pojo中的属性名⼀致,该列才可以映射成功。
如果查询出来的列名和pojo的属性名不⼀致,通过定义⼀个resultMap对列名和pojo属性名之间作⼀个映射关系。resultMap:适合使⽤返回值是⾃定义实体类的情况
resultType:适合使⽤返回值得数据类型是⾮⾃定义的,即jdk的提供的类型
补充:mybatis include标签传参特性测试
1 前⾔
mybatis的include标签主要是⽤于sql语句的可重⽤,并且可以接收参数来⽣成动态sql。为了进⼀步了解include标签的传参特性,我写了⼀段测试代码来测试⼀下include标签的特性。
2 测试代码
<!--需要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
include怎么用String test1 = st1("luck123");
String test2 = st2("luck123");
String test3 = st1("luck123");
String test4 = st2("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>
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。如有错误或未考虑完全的地⽅,望不吝赐教。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论