mybatis collection 多条件查询的实现方法
mybatis collection 多条件查询的实现方法
前言:
业务需要通过mybatis 查询返回嵌套集合,嫌多次查询太麻烦,用自带的高级查询解决问题,下边是代码,已测试通过。
说下自己的理解,就是一个主查询结果集里面嵌套了子查询的结果集,可以是多个子查询,每个子查询的条件从主查询结果集中获取,返回值各自定义。collection 标签的property是主查询里面集合的名字,如果有多个就再写个collection,column是子查询参数,单参数直接写主查询结合返回结果,例如直接写上user_id,要是数据库的字段,多条件就封装下,例如{userId=user_id,theme=theme},然后子查询的parameterType写"java.util.Map",多条件查询好像只有mybatis3.0以后才有,看网上资料说的,没验证过,ofType是集合里的对象,select是对应下面的语句
实现代码:
<resultMap id="BaseResultMap" type="web.model.UserMessage" > <id column="id" property="id" jdbcType="INTEGER" /> <result column="user_id" property="userId" jdbcType="INTEGER" /> <result column="theme" property="theme" jdbcType="VARCHAR" /> <result column="status" property="status" jdbcType="INTEGER" /> <result column="theme_time" property="themeTime" jdbcType="TIMESTAMP" /> <result column="create_time" property="createTime" jdbcType="TIMESTAMP" /> <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" /> <result column="yn" property="yn" jdbcType="INTEGER" /> </resultMap> <resultMap id="BaseVoResultMap" type="web.model.vo.UserMessageVo" extends="BaseResultMap"> <collection property="userMessageDetailList" column="{userId=user_id,theme=theme}" javaType="java.util.ArrayList" ofType="web.model.UserMessageDetail" select="selectUserMessageDetailById"/> </resultMap> <resultMap id="BaseDetailResultMap" type="web.model.UserMessageDetail" > <id column="id" property="id" jdbcType="INTEGER" /> <result column="user_message_id" property="userMessageId" jdbcType="INTEGER" /> <result column="sponsor_id" property="sponsorId" jdbcType="INTEGER" /> <result column="user_id" property="userId" jdbcType="INTEGER" /> <result column="user_type" property="userType" jdbcType="INTEGER" /> <result column="provider_id" property="providerId" jdbcType="INTEGER" /> <result column="message" property="message" jdbcType="VARCHAR" /> <result column="status" property="status" jdbcType="INTEGER" /> <result column="message_time" property="messageTime" jdbcType="TIMESTAMP" /> <result column="create_time" property="createTime" jdbcType="TIMESTAMP" /> <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" /> <result column="yn" property="yn" jdbcType="INTEGER" /> </resultMap> <select id="selectUserMessageById" resultMap="BaseVoResultMap" parameterType="java.lang.Integer"> select * from user_message where user_id = #{userId,jdbcType=INTEGER} </select> <select id="selectUserMessageDetailById" resultMap="BaseDetailResultMap" parameterType="java.util.Map"> select * from user_message_detail where user_id = #{userId,jdbcType=INTEGER} and message = #{theme,jdbcType=VARCHAR} </select>
selectUserMessageById,这个是主查询,VO只多了个 private List<UserMessageDetail> userMessageDetailList,
这个属性,下面是返回值结构截图
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇:SQL Server在AlwaysOn中使用内存表的“踩坑”记录
栏 目:MsSql
本文标题:mybatis collection 多条件查询的实现方法
本文地址:https://www.xiuzhanwang.com/a1/MsSql/10428.html
您可能感兴趣的文章
- 01-10SQL Server行转列的方法解析
- 01-10SqlServer批量备份多个数据库且删除3天前的备份
- 01-10SqlServer给表增加多个字段的语法
- 01-10浅谈sqlserver下float的不确定性
- 01-10SQL update 多表关联更新的实现代码
- 01-10SQLserver中cube:多维数据集实例详解
- 01-10一条SQL语句查询多个数据库
- 01-10MyBatis SQL xml处理小于号与大于号正确的格式
- 01-10SQL删除多列语句的写法
- 01-10C# ling to sql 取多条记录最大时间
阅读排行
本栏相关
- 01-10SQLServer存储过程实现单条件分页
- 01-10SQLServer中防止并发插入重复数据的方
- 01-10SQL Server 2012降级至2008R2的方法
- 01-10SQL Server性能调优之缓存
- 01-10SQL Server数据库定时自动备份
- 01-10Sql Server 死锁的监控分析解决思路
- 01-10实现SQL Server 原生数据从XML生成JSON数
- 01-10SqlServer快速检索某个字段在哪些存储
- 01-10SqlServer 在事务中获得自增ID的实例代
- 01-10SQLServer性能优化--间接实现函数索引或
随机阅读
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10SublimeText编译C开发环境设置
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11ajax实现页面的局部加载