mybatis xml基础大纲
Posted guxiaohai_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis xml基础大纲相关的知识,希望对你有一定的参考价值。
-
between
表示between特殊符号(…之间):如:开始参数 between 结束参数 -
choose when otherwise循环
<choose>
<when test="1 == 1">
满足条件
</when>
<otherwise>
...否则
</otherwise>
</choose>
- if条件
<if test="1 == 1">
...满足条件
</if>
- 特殊符号替换符
特殊符号 | 替换符 |
---|---|
< | < |
<= | <= |
> | > |
>= | >= |
& | & |
’ | ' |
" | " |
!= | != |
= | = |
- 查询(select)
id:唯一标识
parameterType:参数类型
resultType:返回数据类型
<select id="唯一标识" parameterType="参数类型" resultType="返回数据类型"></select>
- 新增(insert)
id:唯一标识
parameterType:参数类型
useGeneratedKeys:生成秘钥(true-是、false-否)
keyProperty:返回键id(以实体id名称为准)
<insert id="唯一标识" parameterType="参数类型" useGeneratedKeys="true" keyProperty="返回键id"></insert>
- 修改(update)
id:唯一标识
parameterType:参数类型
<update id="唯一标识" parameterType="参数类型"></update>
- 删除(delete)
id:唯一标识
parameterType:参数类型
<delete id="唯一标识" parameterType="参数类型"></delete>
- 共用sql语句(sql)
id:唯一标识
include:引用
<sql id="唯一标识"></sql>
<include refid="sql唯一标识id"></include>
以上是关于mybatis xml基础大纲的主要内容,如果未能解决你的问题,请参考以下文章