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

mybatis一对多

时间:2017-06-11 18:28:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:sso   map   iat   ade   result   jdbc   soc   integer   arc   

 <resultMap type="entity.Grade" id="GradeResult">
    <id column="gid" jdbcType="INTEGER" property="gid"/>
    <result column="gname" jdbcType="VARCHAR" property="gname"/>
    <result column="gdesc" jdbcType="VARCHAR" property="gdesc"/>
    <!-- 一对多关系 -->
    <!-- <collection property="stus" resultMap="Student.StudentResult"></collection>  -->
    <collection property="stus" javaType="entity.Student">
        <id property="sid" column="sid"/>
        <result property="sname" column="sname"/>
        <result property="sex" column="sex"/>
    </collection>
  </resultMap>


<resultMap type="entity.Student" id="StudentResult">
    <id column="sid" jdbcType="INTEGER" property="sid"/>
    <result column="sname" jdbcType="VARCHAR" property="sname"/>
    <result column="sex" jdbcType="VARCHAR" property="sex"/>
    <!-- 多对一 -->
   <!--  <association property="grade" resultMap="Grade.GradeResult"></association> -->
    <association property="grade" javaType="entity.Grade">
        <id property="gid" column="gid"/>
        <result property="gname" column="gname"/>
        <result property="gdesc" column="gdesc"/>
    </association>
  </resultMap>

mybatis一对多

标签:sso   map   iat   ade   result   jdbc   soc   integer   arc   

原文地址:http://www.cnblogs.com/suibingbing/p/6985744.html

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