zoukankan      html  css  js  c++  java
  • mybatis association嵌套association的两级嵌套问题

    今天遇到了一个双表连接查询以及自关联的问题,由于第一次遇到,所以在这记下,日后好查阅

    针对一个表的关联属性本身也有自关联的情况下,可以用association嵌套association的方法来处理。

    以下是代码:

    	<select id="selectNewsLabels" resultMap="newslabelMap">
    		select id,label_name,label_content from newlabel where id=#{xxx}
    	</select>
    	
    	<resultMap type="NewManage" id="newmanageMap">
    		<id property="id" column="id"/>
    		<result property="title" column="title"/>
    		<result property="content" column="content"/>
    		<result property="time" column="time"/>
    		<association property="newsLabel" javaType="NewsLabel">
    			<id property="id" column="id"/>
    			<result property="name" column="label_name"/>
    			<association property="parent" javaType="NewsLabel" select="selectNewsLabels" column="pid">
    				<id property="id" column="id"/>
    			    <result property="name" column="label_name"/>
    			</association>
    		</association>
    	</resultMap>
    	
    	<select id="selectCurrentPage" resultMap="newmanageMap">
    		select l.pid,l.id,l.label_name,m.id,m.labelid,m.title,m.content,m.time from newlabel l,newmanage m 
    		<where>
    			 l.id=m.labelid 
    			<if test="title != null and title != ''">
    				and title like '%${title}%'
    			</if>
    			<if test="labelid != null and labelid != 0">
    				and labelid=#{labelid}
    			</if>
    		</where>
    		limit #{pageStartIndex},#{pageSize}
    	</select>
    
    

    这样的话,就不用去另外去写一个VO类去封装这些属性了 ,简单,方便

    在页面上可以用 对象.属性.属性.属性 来获得这个属性值

    我第一次写的时候,把第一个association也加上select了,导致结果不正确。

  • 相关阅读:
    16条很有用的Chrome浏览器命令
    通用测试用例
    Vue中@click、@click.stop和@click.prevet用法
    Vue事件的函数传参
    Vue事件的基本用法
    vue中v-on和v-bind的区别
    Vue中数据的双向绑定方法
    v-once用法
    v-clock、v-text、v-html和v-pre详解
    IDEA给已有项目添加maven依赖
  • 原文地址:https://www.cnblogs.com/caotao0918/p/10096412.html
Copyright © 2011-2022 走看看