mybatis xml基础大纲

Posted guxiaohai_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis xml基础大纲相关的知识,希望对你有一定的参考价值。

  1. between
    表示between特殊符号(…之间):如:开始参数 between 结束参数

  2. choose when otherwise循环

<choose>
     <when test="1 == 1">
         满足条件
     </when>
     <otherwise>
     		...否则
     </otherwise>
 </choose>
  1. if条件
<if test="1 == 1">
	...满足条件
</if>
  1. 特殊符号替换符
特殊符号替换符
<&lt;
<=&lt;=
>&gt;
>=&gt;=
&&amp;
&apos;
"&quot;
!=!=
==
  1. 查询(select)
    id:唯一标识
    parameterType:参数类型
    resultType:返回数据类型
 <select id="唯一标识" parameterType="参数类型" resultType="返回数据类型"></select>
  1. 新增(insert)
    id:唯一标识
    parameterType:参数类型
    useGeneratedKeys:生成秘钥(true-是、false-否)
    keyProperty:返回键id(以实体id名称为准)
 <insert id="唯一标识" parameterType="参数类型" useGeneratedKeys="true" keyProperty="返回键id"></insert>
  1. 修改(update)
    id:唯一标识
    parameterType:参数类型
 <update id="唯一标识" parameterType="参数类型"></update>
  1. 删除(delete)
    id:唯一标识
    parameterType:参数类型
 <delete id="唯一标识" parameterType="参数类型"></delete>
  1. 共用sql语句(sql)
    id:唯一标识
    include:引用
 <sql id="唯一标识"></sql>
 <include refid="sql唯一标识id"></include>

以上是关于mybatis xml基础大纲的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis 基础篇-- 深入了解 XML 配置(概述)

mybatis入门基础----SqlMapConfig.xml全局配置文件解析

Mybatis 基础篇-- 深入了解 XML 配置(environments)

MyBatis总结

Mybatis 基础篇-- 深入了解 XML 配置(objectFactorypluginsdatabaseIdProvider)

mybatis基础1