码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis常用标签

时间:2019-03-28 00:34:27      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:HERE   rop   prope   delete   select   for   upd   例子   关联关系   

定义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常用标签

标签:HERE   rop   prope   delete   select   for   upd   例子   关联关系   

原文地址:https://www.cnblogs.com/nxjblog/p/10612080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!