这里面我们介绍一下springboot集成mybatis完成一对多数据和一对一数据的功能。任何一个人离开你 都并非突然做的决定 人心是慢慢变冷 树叶是渐渐变黄 故事是缓缓写到结局 而爱是因为失望太多 才变成不爱。

springboot集成mybatis

我们创建两张表分别为:person表和comment表。我们的建表语句和插入脚本如下:对应关系是一个用户可以有多个评论

create TABLE person(
person_id int(11) PRIMARY KEY ,
person_name VARCHAR(45) not NULL
);
INSERT INTO person(person_id, person_name) VALUES (1, "huhx"); create table comment(
comment_id int(11) PRIMARY key,
person_id int(11) not null,
content VARCHAR(45) not null,
comment_time DATETIME not NULL
);
INSERT INTO comment(comment_id, person_id, content, comment_time) VALUES (1, 1, "content huhx", now());
INSERT INTO comment(comment_id, person_id, content, comment_time) VALUES (2, 1, "content java", now());
INSERT INTO comment(comment_id, person_id, content, comment_time) VALUES (3, 1, "content golang", now());

现在我们开始我们的代码测试,首先定义我们的实体bean类。

一、对应数据库表的实体类

表的设计可能不是特别的合理,这里面主要是学习mybatis一对多关系的知识。

  • Comment:评论表
public class Comment {
private int commentId;
private String content;
private Date commentTime;
}
  • Person:用户表
public class Person {
private int personId;
private String personName;
}
  • PersonComment:用户的评论表
public class PersonComment {
private Person person;
List<Comment> comments;
}

二、我们的控制器测试类

@RequestMapping("/mybatis")
@RestController
public class MyBatisBeanAction { private static Logger logger = LoggerFactory.getLogger(MyBatisBeanAction.class); @Resource
private SqlSession sqlSession; @GetMapping("getComment")
public ResponseBean<PersonComment> getPersonComments(@RequestParam("personId") int personId) {
PersonComment personComment = this.sqlSession.selectOne("user.queryPersonComments", personId);
return ResultUtil.success(personComment);
}
}

user.queryPersonComments的mybatis语句如下:

<resultMap id="personCommentMap" type="PersonComment">
<id column="person_id"/><!--这条语句不能省略,否则查询出三条。会electOne在返回处报错..-->
<association property="person" column="person_id" javaType="Person">
<id property="personId" column="person_id"/>
<result property="personName" column="person_name"/>
</association>
<collection property="comments" ofType="Comment">
<id property="commentId" column="comment_id"/>
<result property="content" column="content"/>
<result property="commentTime" column="comment_time"/>
</collection>
</resultMap>
<!-- 一对多的bean映射的写法 -->
<select id="queryPersonComments" parameterType="int" resultMap="personCommentMap">
SELECT
a.person_id,
a.person_name,
b.comment_id,
b.content,
b.comment_time
FROM
person a, comment b
WHERE
a.person_id = b.person_id AND
a.person_id = #{personId}
ORDER BY
a.person_id DESC
</select>

我们在浏览器发送get请求:http://localhost:9998/mybatis/getComment?personId=1。控制台发送的sql语句日志如下:

::19.281 [http-nio--exec-] DEBUG user.queryAllUserInfo_COUNT - ==>  Preparing: SELECT count() FROM puser
::19.282 [http-nio--exec-] DEBUG user.queryAllUserInfo_COUNT - ==> Parameters:
::19.285 [http-nio--exec-] DEBUG user.queryAllUserInfo_COUNT - <== Total:
::19.286 [http-nio--exec-] DEBUG user.queryAllUserInfo - ==> Preparing: SELECT userId, username, password, address, phoneNumber, birthday, sex FROM puser ORDER BY userId DESC LIMIT ?, ?
::19.286 [http-nio--exec-] DEBUG user.queryAllUserInfo - ==> Parameters: (Integer), (Integer)
::19.290 [http-nio--exec-] DEBUG user.queryAllUserInfo - <== Total:

  可以看到查询出三条数据,但是封闭到一个实体bean里面。这个对于之前总是用map接收sql查询返回的数据来说,确实有一些想法。之前用map的话,没有用Bean这样很好的表现数据模型。其次类似于这种的查询,返回的就是一个list列表。最后感觉用Bean的话,可以使用@Valid去对数据进行校验,这个挺不错的。这种方式返回的数据:

{
"returnCode": ,
"returnMessage": "成功",
"response": {
"person": {
"personId": ,
"personName": "huhx"
},
"comments": [
{
"commentId": ,
"content": "content huhx",
"commentTime":
},
{
"commentId": ,
"content": "content java",
"commentTime":
},
{
"commentId": ,
"content": "content golang",
"commentTime":
}
]
}
}

我们修改为List的返回格式,具体的修改内容如下:

@GetMapping("getCommentMap")
public ResponseBean<List<Map<String, Object>>> getPersonCommentsMap(@RequestParam("personId") int personId) {
List<Map<String, Object>> lists = this.sqlSession.selectList("user.queryPersonCommentsMap", personId);
return ResultUtil.success(lists);
} <select id="queryPersonCommentsMap" parameterType="int" resultType="map">
SELECT
a.person_id,
a.person_name,
b.comment_id,
b.content,
b.comment_time
FROM
person a, comment b
WHERE
a.person_id = b.person_id AND
a.person_id = #{personId}
ORDER BY
a.person_id DESC
</select>

  修改之后返回的结果如下:可以看到返回的数据中comment_time和person_name重复了多次,而且数据list越多的时候,重复的次数就越大。最后对比这两种的返回,可以得到用map的确不能很好的反应数据模型的关系。以后还是用Bean去映射返回的数据吧,之前一直认为用map特别的方便和灵活。

{
"returnCode": ,
"returnMessage": "成功",
"response": [
{
"comment_time": ,
"person_name": "huhx",
"comment_id": ,
"content": "content huhx",
"person_id":
},
{
"comment_time": ,
"person_name": "huhx",
"comment_id": ,
"content": "content java",
"person_id":
},
{
"comment_time": ,
"person_name": "huhx",
"comment_id": ,
"content": "content golang",
"person_id":
}
]
}

友情链接

springboot---->集成mybatis开发(二)的更多相关文章

  1. springboot集成mybatis(二)

    上篇文章<springboot集成mybatis(一)>介绍了SpringBoot集成MyBatis注解版.本文还是使用上篇中的案例,咱们换个姿势来一遍^_^ 二.MyBatis配置版(X ...

  2. 在springboot中集成mybatis开发

    在springboot中利用mybatis框架进行开发需要集成mybatis才能进行开发,那么如何在springboot中集成mybatis呢?按照以下几个步骤就可以实现springboot集成myb ...

  3. SpringBoot Mybatis整合(注解版),SpringBoot集成Mybatis(注解版)

    SpringBoot Mybatis整合(注解版),SpringBoot集成Mybatis(注解版) ================================ ©Copyright 蕃薯耀 2 ...

  4. BindingException: Invalid bound statement (not found)问题排查:SpringBoot集成Mybatis重点分析

    重构代码,方法抛出异常:BindingException: Invalid bound statement (not found) 提示信息很明显:mybatis没有提供某方法 先不解释问题原因和排查 ...

  5. SpringBoot集成MyBatis的Bean配置方式

    SpringBoot集成MyBatis的Bean配置方式 SpringBoot是一款轻量级开发的框架,简化了很多原先的xml文件配置方式,接下来就介绍一下如何不适用XML来配置Mybatis spri ...

  6. 0120 springboot集成Mybatis和代码生成器

    在日常开发中,数据持久技术使用的架子使用频率最高的有3个,即spring-jdbc , spring-jpa, spring-mybatis.详情可以看我之前的一篇文章spring操作数据库的3个架子 ...

  7. SpringBoot集成MyBatis底层原理及简易实现

    MyBatis是可以说是目前最主流的Spring持久层框架了,本文主要探讨SpringBoot集成MyBatis的底层原理.完整代码可移步Github. 如何使用MyBatis 一般情况下,我们在Sp ...

  8. SpringBoot集成MyBatis小记

    SpringBoot集成MyBatis小记 参考MyBatis官网 1. 添加maven依赖 添加到pom.xml <dependency> <groupId>org.myba ...

  9. springboot集成mybatis(一)

    MyBatis简介 MyBatis本是apache的一个开源项目iBatis, 2010年这个项目由apache software foundation迁移到了google code,并且改名为MyB ...

  10. SpringBoot 集成Mybatis 连接Mysql数据库

    记录SpringBoot 集成Mybatis 连接数据库 防止后面忘记 1.添加Mybatis和Mysql依赖 <dependency> <groupId>org.mybati ...

随机推荐

  1. miRTarBase 数据库简介

    miRTarBase 是一个手 收集的,经过实验验证过miRNA靶基因的数据库,对于每条miRNA靶基因的记录, 都会赋予1个唯一的 miRNA-target interactions (简称MTs) ...

  2. Http协议中常用字段总结(不定时完善中)

    1.Http协议概述 关于Http协议的发展,各种资料有很多,在此不再赘述,不明白的小伙伴儿可以去搜一下,Http报文分为请求报文和相应报文,由于Http是面向文本的,因此在报文中的每一个字段都是一些 ...

  3. 近期全国各地联通线路无法访问OA的解决方案

    最近有多地区使用联通线路的用户无法访问easyradius控制台,即oa.ooofc.com,其主要的原因是由于联通的DNS解析错误,导致的 oa.ooofc.com的解析IP是115.239.252 ...

  4. Python入门学习:网络刷博器爬虫

    1.比较有趣,可以不断刷新指定的网址 2.源码: #!/usr/bin/env python3 # -*- coding: utf-8 -*- import webbrowser as web imp ...

  5. win7下安装双系统Ubuntu14.04后开机没有win7,直接进入Ubuntu

    开机进入Ubuntu后,打开命令端,输入: sudo update-grub 然后重启,则解决问题

  6. linux mount 挂接新硬盘

    1.先用fdisk -l查看一下,先加入的外设地址名称   2. #fdisk /dev/sdb进入fdisk模式:Command (m for help):p //查看新硬盘的分区Command ( ...

  7. rdlc报表 矩阵控件下的按组分页

    场景: 使用rdlc开发报表,例如订单产品报表,显示多个订单,一个订单有动态生成的固定的多个产品组成,同时统计每个订单里多个产品数量总数. 数据库层面分析: 此报表属于交叉报表,例如5个订单,3个产品 ...

  8. UNIX环境编程学习笔记(16)——进程管理之进程环境变量

    lienhua342014-10-03 1 环境表和环境指针 在每个进程启动时,都会接到一张环境表.环境表是一个字符指针数组,其中每个指针包含一个以 null 结束的 C 字符串的地址.全局变量env ...

  9. Data Set Config配置元件

    右键点击Jmeter中需要参数化的某个请求,选择添加——配置原件——CSV Data Set Config,会添加一个CSV Data Set Config,需要设置相关的一些内容,具体如下:

  10. Android开发学习笔记-splash画面的显示

    贴代码: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android=&qu ...