时间:2021-05-20
现在有一张订单表t_stockorder,其拥有id、code、client_id、merchandise_id、merchandise_number、order_date、operator_id这些字段,其中client_id关联t_client表中code字段,merchandise_id关联t_merchandise表的code字段,operator_id关联t_employee表的code字段。
现在要通过SQL语句将订单表中t_stockorder的数据全部查询出来,SQL语句如下所示:
select so.id, so.code, c.name cname, m.name mname, so.merchandise_number, so.order_date, e.name ename from inventory.t_stockorder so inner join inventory.t_client c on c.code = so.client_id inner join inventory.t_merchandise m on m.code = so.merchandise_id inner join inventory.t_employee e on e.code = so.operator_id现在要在mapper映射文件中添加动态Sql语句,一般情况下映射文件中的resultMap元素中只可以有一个association,那如何添加多个association到resultMap中呢?正确代码如下图所示:
<resultMap id="StockorderMap" type="com.lwz.entity.Stockorder"> <id property="id" column="id" /> <result property="code" column="code" /> <result property="merchandiseNumber" column="merchandise_number" /> <result property="orderDate" column="order_date" /> <association property="client" javaType="Client" resultMap="ClientResultMap"></association> <association property="merchandise" javaType="Merchandise" resultMap="MerchandiseResultMap"></association> <association property="employee" javaType="Employee" resultMap="EmployeeResultMap"></association> </resultMap> <resultMap id="ClientResultMap" type="com.lwz.entity.Client"> <id property="code" column="code" /> <result property="name" column="cname" /> </resultMap> <resultMap id="MerchandiseResultMap" type="com.lwz.entity.Merchandise"> <id property="code" column="code" /> <result property="name" column="mname" /> </resultMap> <resultMap id="EmployeeResultMap" type="com.lwz.entity.Employee"> <id property="code" column="code" /> <result property="name" column="ename" /> </resultMap> <!--通过实体作为筛选条件查询--> <select id="queryAll" resultMap="StockorderMap"> select so.id, so.code, c.name cname, m.name mname, so.merchandise_number, so.order_date, e.name ename from inventory.t_stockorder so inner join inventory.t_client c on c.code = so.client_id inner join inventory.t_merchandise m on m.code = so.merchandise_id inner join inventory.t_employee e on e.code = so.operator_id <where> <if test="id != null"> and id = #{id} </if> <if test="code != null and code != ''"> and so.code = #[code] </if> <if test="client != null"> and client_id = #{client.code} </if> <if test="merchandise != null"> and merchandise_id = #{merchandise.code} </if> <if test="merchandiseNumber != null"> and merchandise_number = #{merchandiseNumber} </if> <if test="orderDate != null"> and order_date = #{orderDate} </if> <if test="employee != null"> and operator_id = #{employee.code} </if> </where> </select>resultMap中association的各个属性的含义:
到此这篇关于MyBatis映射文件resultMap元素中使用多个association的方法的文章就介绍到这了,更多相关MyBatis 多个association内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、Mybatis中的延迟加载1、延迟加载背景:Mybatis中Mapper配置文件中的resultMap可以实现高级映射(使用association、coll
一、延迟加载 resultMap可以实现高级映射(使用association、collection实现一对一及一对多映射),association、colle
前边阐述了如何在java项目中使用mybatis,我们使用的是映射文件的方式,在获得具体的数据操作方法时需要传入映射文件中namespace+“.”方法名称,这
要点主要还是结果集映射(resultMap)association标签:一个复杂类型的关联;许多结果将包装成这种类型(JavaBean)嵌套结果映射,关联可以是
在使用Mybatis时,有的时候我们可以不用定义resultMap,而是直接在语句上指定resultType。这个时候其实就用到了Mybatis的结果集自动映射