返回顶部
首页 > 资讯 > 数据库 >Mybatis | Mybatis标签collection一对多的使用
  • 350
分享到

Mybatis | Mybatis标签collection一对多的使用

mybatisjavamysql 2023-09-05 20:09:56 350人浏览 八月长安
摘要

mybatis标签collection一对多的使用 一、colleciton 标签二、collection使用方法1. 方法一: 嵌套结果映射2. 方法二: 嵌套select 查询 三、

mybatis标签collection一对多的使用

一、colleciton 标签

Mybatis的 collection 是一对多的使用的, 在 resultMap 标签内使用
当一个Bean中有 一个list属性需要关联查询出来的使用就用collection 标签
如下
查询用户结果 需要关联出 角色集合


用户

@Datapublic class User {        private Integer id;        private String name;        private List<Role> roles;}

角色

@Datapublic class Role {    private Integer id;    private Integer userId;    private String name;    private String type;}

sql

CREATE TABLE `user` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL COMMENT '名称',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4;CREATE TABLE `role` (  `id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL COMMENT '用户id',  `name` varchar(255) DEFAULT NULL COMMENT '角色名称',`type` varchar(255) DEFAULT NULL COMMENT '角色类型',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4;

二、collection使用方法

1. 方法一: 嵌套结果映射

    <!-- 定义resultMap -->    <resultMap id="UserResultMap" type="User">        <result column="id" property="id"/>        <result column="name" property="name"/>        <collection ofType="role" property="roles">            <result column="role_id" property="id"/>            <result column="role_name" property="name"/>            <result column="role_type" property="type"/>        </collection>    </resultMap>    <!--查询语句-->    <select id="selectUserById" resultMap="UserResultMap">        select u.id ,u.name,r.id AS role_id ,r.name AS role_name ,r.type AS role_type FROM user AS u INNER JOIN role AS r ON u.id = r.user_id where u.id = #{id}    </select>

2. 方法二: 嵌套select 查询

    <!-- 定义resultMap -->    <resultMap id="UserResultMap" type="User">        <result column="id" property="id"/>        <result column="name" property="name"/>        <collection ofType="role" property="roles" column="id" select="selectRoleByUserId"/>    </resultMap>     <!--查询语句-->    <select id="selectUserById" resultMap="UserResultMap">        select  id , name FROM user where id = #{id}    </select>    <!--查询语句-->    <select id="selectRoleByUserId" resultMap="role">        select  id , name,type FROM role where user_id = #{userId}    </select>
  • select=“selectRoleByUserId” 找的是第二个sql语句,如果调用别的xml文件中方法写全路径就可以找到.
  • column=“id” 参数id 传多个参数的话就是 {“属性名”=“参数”,“属性名”=“参数”} 这样的.

三、 association 一对一

association 一对一: https://blog.csdn.net/qq825478739/article/details/127357796

来源地址:https://blog.csdn.net/qq825478739/article/details/127357819

您可能感兴趣的文档:

--结束END--

本文标题: Mybatis | Mybatis标签collection一对多的使用

本文链接: https://www.lsjlt.com/news/395984.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作