tianzhidao28的gravatar头像
tianzhidao28 2016-07-08 11:44:54

mybatis association查询怎么使用?

按网上的实验了好多一个都没成功的

<resultMap id="ShopifyProduct" type="xxxx.model.ShopifyProduct" >
  <id column="id" property="id" jdbcType="BIGINT" />
  <result column="title" property="title" jdbcType="VARCHAR" />
  <result column="vendor" property="vendor" jdbcType="VARCHAR" />
  <result column="productType" property="productType" jdbcType="VARCHAR" />
  <result column="createTime" property="createTime" jdbcType="TIMESTAMP" />
  <result column="handle" property="handle" jdbcType="VARCHAR" />
  <result column="updateTime" property="updateTime" jdbcType="TIMESTAMP" />
  <result column="publishTime" property="publishTime" jdbcType="TIMESTAMP" />
  <result column="templateSuffix" property="templateSuffix" jdbcType="VARCHAR" />
  <result column="publishedScope" property="publishedScope" jdbcType="VARCHAR" />
  <result column="tags" property="tags" jdbcType="VARCHAR" />

  <association property="image" column="imageId" select="getImgById">
  </association>
</resultMap>

 

<resultMap id="img" type="coxxxxapi.model.ShopifyProductImage" >
  <id column="id" property="id" jdbcType="BIGINT" />
  <result column="src" property="src" jdbcType="VARCHAR" />
</resultMap>
所有回答列表(1)
mq7410p123的gravatar头像
mq7410p123  LV3 2016年7月12日

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.batis.classes.bean">   <!-- 映射问文件  命名空间 随便起名 唯一-->
    <select id="getClass" parameterType="int" resultMap="getMap">  <!-- 查询用select   表连接  返回类型 resultMap-->
        select * from classes c,teacher t where c.teacher_id = #{teacherId}  and c.teacher_id=t.id;
    </select>
    <resultMap type="Classes" id="getMap">                <!-- 建getMap 指定要查询的表的实体类 -->   
       <id  property="id" column="id"/>                   <!-- classes的字段名 -->  
       <result  property="name" column="name"/>

    <association property="teacherId" javaType="Teacher"> <!-- javaType指teacher的 实体类名 , property :指  classes表中对应teacher表的外键名字  -->
       <id  property="id" column="id"/>                    <!--下面这两个指 teacher的字段 -->
       <result  property="name" column="name"/>
    </association>


    </resultMap>
</mapper>

顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友