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

myBatis外部的resultMap高级应用

时间:2017-08-19 21:11:19      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:tty   nbsp   ltm   根据   用户名   jdb   应用   guest   username   

resultMap:外部的resultMap的引用,和resultType不能同时使用。

  <resultMap id="BaseResultMap" type="com.lamsey.survey.entities.guest.User" >
    <id column="user_id" property="userId" jdbcType="INTEGER" />
    <result column="user_name" property="userName" jdbcType="CHAR" />
    <result column="user_pwd" property="userPwd" jdbcType="CHAR" />
    <result column="company" property="company" jdbcType="BIT" />
  </resultMap>
<!-- 根据用户名查询用户信息 -->
  <select id="selectUser" resultMap="BaseResultMap">
      select user_id, user_name, user_pwd, company
    from guest_user where user_name = #{userName,jdbcType=CHAR}
  </select>

 

myBatis外部的resultMap高级应用

标签:tty   nbsp   ltm   根据   用户名   jdb   应用   guest   username   

原文地址:http://www.cnblogs.com/limingxian537423/p/7397717.html

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