mybatis常用标签
Posted nxjblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis常用标签相关的知识,希望对你有一定的参考价值。
定义sql语句:insert、delete、update、select
例子:
<select id="userList" parameterType="user" resultType="User">
select * from user where name =#{name}
</select>
配置java对象属性与查询结果集中列名的对应关系:resultMap
例子:
<resultMap id="getStudentRM" type="EStudnet">
<id property="id" column="ID"/>
<result property="studentName" column="Name"/>
<result property="studentAge" column="Age"/>
</resultMap>
动态sql拼接:foreach、if、choose
格式化输出:where、set、trim
配置关联关系:collection、association
定义常量:sql
以上是关于mybatis常用标签的主要内容,如果未能解决你的问题,请参考以下文章