mybatis常用标签
【摘要】
mybatis是在日常开发中最常用的orm框架,所以熟练使用mybatis是必须掌握的技能,那么本篇文章将总结所有在开发中常用的标签。
1.select 标签
select表示为查询语法。
2.in...
mybatis是在日常开发中最常用的orm框架,所以熟练使用mybatis是必须掌握的技能,那么本篇文章将总结所有在开发中常用的标签。
1.select 标签
select表示为查询语法。
2.insert
insert表示为插入语法。
3.update
update表示为修改语法。
4.delete
delete表示为删除语法。
5.foreach
foreach表示为循环语法语法。
<foreach collection="barcodeManageBo" item="object" separator=","
open="(" close=")">
#{object.id}
</foreach>
- 1
- 2
- 3
- 4
- open:以什么开始
- close:以什么结束
- separator:分隔符
- collection:list名称
- item:index名称
6.sql
sql表示可通用的sql片段,使用id可以引用。
<sql id="sqlvalues">
<if test="code!=null or code !=''">#{code},</if>
<if test="itemname !=null or itemname !=''">#{itemname},</if>
<if test="criteria !=null or criteria !=''">#{criteria},</if>
</sql>
- 1
- 2
- 3
- 4
- 5
7.include
<include refid="sqlvalues"></include>
- 1
include表示引用sql标签,作为sql一部分。
8.set
<set>
<if test="typeName != null and typeName != ''">
typeName ={typeName},
</if>
<if test="sort != null and sort != ''">sort = #{sort},</if>
</set>
- 1
- 2
- 3
- 4
- 5
- 6
update时需要使用set语法,在set时候省略最后一个符号。
9.trim
trim是对sql值的替换。下文是将最后一个,替换成空,防止sql报错。
<trim suffix="" suffixOverrides=",">
<if test="code!=null"> code = #{code},</if>
<if test="itemname !=null"> itemname =#{itemname},</if>
<if test="criteria !=null "> criteria =#{criteria},</if>
</trim>
- 1
- 2
- 3
- 4
- 5
- prefix:前缀覆盖并增加其内容。
- suffix:后缀覆盖并增加其内容。
- prefixOverrides:前缀判断的条件。
- suffixOverrides:后缀判断的条件。
10.if
if表示判断。
11.choose
多条件判断,相当于if/elseif。
<choose>
<when test="title != null">
and title = #{title}
</when>
<when test="content != null">
and content = #{content}
</when>
<otherwise>
and owner = "owner1"
</otherwise>
</choose>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
12.resultMap
数据库字段一般都是a_b,这样不符合实体的规范,所以需要转换成aB形式。
<resultMap id="getStudentRM" type="EStudnet">
<id property="id" column="ID"/>
<result property="studentName" column="Name"/>
<result property="studentAge" column="Age"/>
</resultMap>
<select id="getStudent" resultMap="getStudentRM">
SELECT ID, Name, Age
FROM TStudent
</select>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
13.sql小技巧
时间转为String
DATE_FORMAT(scanDate,'%Y-%m-%d %H:%i') as scanDate,
- 1
文章来源: baocl.blog.csdn.net,作者:小黄鸡1992,版权归原作者所有,如需转载,请联系作者。
原文链接:baocl.blog.csdn.net/article/details/120795244
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)