飞雪团队

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 6405|回复: 0

MybatisPlus多表连接查询

[复制链接]

5744

主题

5832

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
19556
发表于 2022-2-12 14:35:42 | 显示全部楼层 |阅读模式
% n* F' ^; `$ w/ l7 ~. z% k
<h3 id="一序言">一、序言</h3>
9 j' W7 m( M7 o" {; i9 w0 ]<h4 id="一背景内容">(一)背景内容</h4>
1 E3 H: A! S; H* n7 ^6 U<p>软件应用技术架构中DAO层最常见的选型组件为MyBatis,熟悉MyBatis的朋友都清楚,曾几何时MyBatis是多么的风光,使用XML文件解决了复杂的数据库访问的难题。时至今日,曾经的屠龙者终成恶龙,以XML文件为基础的数据库访问技术变得臃肿、复杂,维护难度直线上升。</p>
+ n" b$ ]+ A0 M. I1 I- M<p>MybatisPlus对常见的数据库访问进行了封装,访问数据库大大减少了XML文件的依赖,开发者从臃肿的XML文件中获得了较大限度的解脱。</p>) C  E' i" ]3 |/ W
<p>MybatisPlus官方并没有提供多表<code>连接查询</code>的通用解决方案,然而连接查询是相当普遍的需求。解决连接查询有两种需求,一种是继续使用MyBatis提供XML文件解决方式;另一种本文提供的解决方案。</p>
+ O( j9 U: x2 |! @<p>事实上笔者强烈推荐彻底告别通过XML访问数据库,并不断探索新式更加友好、更加自然的解决方式,现分享最新的MybatisPlus技术的研究成果。</p>" E* c( V2 Q% @2 A9 B
<img src="https://www.altitude.xin/typora/image-20211021114957682.png" >/ N4 R2 G, C2 n
<h4 id="二场景说明">(二)场景说明</h4>
8 D( m! x8 x* i# b<p>为了说明连接查询的关系,这里以学生、课程及其关系为示例。</p>; s0 ]/ `4 J4 G$ F, J+ l
<img src="https://www.altitude.xin/typora/image-20211020194255298.png" >
5 D9 F  T* L* g<h4 id="三前期准备">(三)前期准备</h4>5 R3 @8 s4 L. D/ i% f0 h
<p>此部分需要读者掌握以下内容:Lambda 表达式、特别是方法引用;函数式接口;流式运算等等,否则理解起来会有些吃力。</p>6 ?6 O! p" W$ E0 c, q
<img src="https://www.altitude.xin/typora/image-20211021135113431.png" >
" h. k8 N; k5 {) E9 Q/ u) A<p>实体类与 Vo 的映射关系,作者创造性的引入特别构造器,合理利用继承关系,极大的方便了开发者完成实体类向 Vo 的转换。</p>4 E6 L4 h0 |% e% Q  Y. p9 p
<p>空指针异常忽略不处理,借助[Optional]类实现,详情移步[Java8 新特性]查看。</p>
/ [; C* p  n: E, C* |% z: G/ p$ n<h3 id="二一对一查询">二、一对一查询</h3>
1 \2 E  g1 D6 Q<p>一对一查询最典型的应用场景是将<code>id</code>替换成<code>name</code>,比如将<code>userId</code>替换成<code>userName</code>。</p>
& R% z% G( k" u9 P6 A/ L, ~( D7 s<h4 id="一查询单条记录">(一)查询单条记录</h4>
7 e  ?# e0 g# n1 q<p>查询单条记录是指返回值仅有一条记录,通常是以唯一索引作为条件的返回查询结果。</p>
4 v3 \+ m2 J$ j<h5 id="1示例代码">1、示例代码</h5>
7 Z" ?0 h7 w: b3 d( ~1 z<pre><code class="language-java">/**
. f8 X" u9 N2 ]1 `+ M$ K: f3 E' V. C2 Q * 查询单个学生信息(一个学生对应一个部门)
, U$ u& [/ O9 G */% g3 l" g5 K: ]9 E
public UserVo getOneUser(Integer userId) {
  U) D# Q! l9 n7 D) v1 j7 S    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class)
' l  j: Q" B# ~5 c) W3 x" f. V7 b        .eq(User::getUserId, userId);
" w- a: H' u. x4 ^! M    // 先查询用户信息0 E. i5 j" w2 V/ w
    User user = userMapper.selectOne(wrapper);
+ ^! q) S, e( ]) c! k    // 转化为Vo2 d3 m& P( e& V0 [6 h% a7 S. \
    UserVo userVo = Optional.ofNullable(user).map(UserVo::new).orElse(null);
/ B' ~. |- N1 a- P$ _0 X* F) u; q    // 从其它表查询信息再封装到Vo
/ _) G0 D# @- H! q6 @    Optional.ofNullable(userVo).ifPresent(this::addDetpNameInfo);; G/ E$ f& h! x( F. F+ {! Z
    return userVo;
% m. @  Y' m* p2 m2 n}9 v5 h  b) v- z
</code></pre>
  t; e4 Z  i+ {9 \<p>附属表信息补充</p>5 {. K/ G! p( W( Q) `' d
<pre><code class="language-java">/**
! s5 Q6 j8 L( C3 D! F* W * 补充部门名称信息8 Y+ C) r' l- F- r# u
*/
- _. _* t0 A/ h& J8 {6 O. @private void addDetpNameInfo(UserVo userVo) {, o( K. T8 _9 G/ n5 A
    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class)3 }! b% [2 G5 i5 S3 C
        .eq(Dept::getDeptId, userVo.getDeptId());
  h: o* ~  w/ u* w. h  a    Dept dept = deptMapper.selectOne(wrapper);
. {6 n  h; t  H1 E' `, o' Y    Optional.ofNullable(dept).ifPresent(e -&gt; userVo.setDeptName(e.getDeptName()));
; H9 P' b, p: g5 N  p4 W# U}
9 r* T0 U" h1 U9 J* y6 w/ R) E5 z</code></pre>: V, c( h( @: K+ a0 w, ~3 Q
<h5 id="2理论分析">2、理论分析</h5>
6 h7 K' S  m! e6 k6 R9 y! P3 G<p>查询单个实体共分为两个步骤:根据条件查询主表数据(需处理空指针异常);封装 Vo 并查询附属表数据。</p>
* C$ R2 t& ]5 Z<p>查询结果(VO)只有一条记录,需要查询两次数据库,时间复杂度为<code>O(1)</code>。</p>. W( j6 d6 e5 C/ G; n' U
<h4 id="二查询多条记录">(二)查询多条记录</h4>5 y+ `' B. X/ `" H) i! v# V
<p>查询多条记录是指查询结果为列表,通常是指以普通索引为条件的查询结果。</p>
" P0 J( O/ }/ t3 l" a% L<h5 id="1示例代码-1">1、示例代码</h5>
6 b6 f) C4 w5 I5 u4 H# S4 O4 T, M<pre><code class="language-java">/**
  A1 W1 _2 X* F% p' c3 Z * 批量查询学生信息(一个学生对应一个部门)
! a& k! ~, C% P: B( t */
3 E6 Z! A, j3 C& D; S1 Zpublic List&lt;UserVo&gt; getUserByList() {6 J* e) O: ~& [4 L: O# @2 i& M
    // 先查询用户信息(表现形式为列表)
: ?, N7 [4 X1 `' Y, N! O    List&lt;User&gt; user = userMapper.selectList(Wrappers.emptyWrapper());# m3 M/ o+ w2 t+ N
    List&lt;UserVo&gt; userVos = user.stream().map(UserVo::new).collect(toList());
$ q; U3 X$ x# ?7 w* e& C; }1 ?    // 此步骤可以有多个
. L4 u) x7 E, h4 K7 F; l    addDeptNameInfo(userVos);
" g; I1 o) A  h3 n    return userVos;
  Y3 F, p7 @) W( k, R) {5 s' G}
0 H+ H: _0 @- t</code></pre>
: n$ ?8 }4 P- x<p>附属信息补充</p>
1 F) }- ~( b/ J, V- D1 h<pre><code class="language-java">private void addDeptNameInfo(List&lt;UserVo&gt; userVos) {/ {; ^; R' F$ J0 h
    // 提取用户userId,方便批量查询
: h" s4 _- b) J0 R$ g. }- a    Set&lt;Integer&gt; deptIds = userVos.stream().map(User::getDeptId).collect(toSet());3 @4 I3 o' M6 q+ d
    // 根据deptId查询deptName(查询前,先做非空判断)
: ~5 [' n/ `' M, K    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
' l$ k0 H- s' o9 n; k( O* |    // 构造映射关系,方便匹配deptId与deptName
) W$ G1 h9 j2 [  a# K; j    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));
' [% p- S* l3 e2 R2 ?    // 封装Vo,并添加到集合中(关键内容)
- B  M* x; O" K    userVos.forEach(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));
9 @. a! {" v* [- p9 ]& q: ]  X% k}0 U( k# ]( ^4 {5 E: H' u' L
</code></pre>! V# y$ e  ^) y3 \2 \
<h5 id="2理论分析-1">2、理论分析</h5>
: x# @9 P- ^2 i<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p># _) a: y* t" p  ~
<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>0 x9 g9 Q) {) `, Q4 R% F, p6 M
<h4 id="三查询多条记录分页">(三)查询多条记录(分页)</h4>
0 ~! h7 Y& C2 G% `- ~! S4 Q<p>分页查询实体的思路与查询列表的思路相似,额外多处一步分页泛型转换。</p>  z, l8 L0 d1 I. l5 d& x5 P
<h5 id="1示例代码-2">1、示例代码</h5>
+ R9 }2 I" d, p8 ^: {<pre><code class="language-java">/**0 q& V$ _/ K0 j3 Q! t
* 分页查询学生信息(一个学生对应一个部门)3 V! B4 v/ J; I' ~4 U# R* ]
*/
1 X: @$ B# P& D7 O) y7 Qpublic IPage&lt;UserVo&gt; getUserByPage(Page&lt;User&gt; page) {
/ Y/ j# W! U% i* \" ~    // 先查询用户信息
4 e0 T$ L( F5 L- c+ m" i    IPage&lt;User&gt; xUserPage = userMapper.selectPage(page, Wrappers.emptyWrapper());1 C9 Q+ [  R6 V1 Q7 k1 g7 {7 h; b
    // 初始化Vo5 d$ X9 d3 c5 ]) A. w2 G
    IPage&lt;UserVo&gt; userVoPage = xUserPage.convert(UserVo::new);% y0 x0 Z5 O' b5 G6 P' T+ w
    if (userVoPage.getRecords().size() &gt; 0) {
! O6 r% d" Q- I8 J        addDeptNameInfo(userVoPage);4 {+ ]) r7 W2 U- x: L  S  ?
    }. _' N7 |  G2 r" [2 g4 @% [% W& @
    return userVoPage;0 \' U1 p5 |' d+ \/ i- Y
}
. r/ I, b/ ^9 Q/ P$ D3 W$ X/ ^7 Z</code></pre>; e/ N+ ^* z# N; @! ~% x9 v% s
<p>查询补充信息</p>
9 C9 K; V/ x3 D* Z2 N' l/ j<pre><code class="language-java">private void addDeptNameInfo(IPage&lt;UserVo&gt; userVoPage) {  w; Z+ M& c! k% P) g. ~. j" A
    // 提取用户userId,方便批量查询- h& e4 J& V+ \0 K7 M: k9 z0 Q
    Set&lt;Integer&gt; deptIds = userVoPage.getRecords().stream().map(User::getDeptId).collect(toSet());, L6 X. `+ _  t+ K  M( A4 a
    // 根据deptId查询deptName
; J( T2 ?$ l. a' \# x' J8 T! R; t3 c3 U    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
7 t# O5 D$ Z# X    // 构造映射关系,方便匹配deptId与deptName! j8 t1 g: w# |% E; W4 h5 e
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));6 \0 u' `: A6 k8 I  u/ C
    // 将查询补充的信息添加到Vo中
/ C* a' {. c5 p. g    userVoPage.convert(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));3 Y1 U* I6 G5 y
}
+ Y" Z: f0 u8 l3 j' P6 j</code></pre>/ x, @! j& @( I! `
<p><code>IPage</code>接口中<code>convert</code>方法,能够实现在原实例上修改。</p>
/ B/ e/ Q/ U* R) _* Z<h5 id="2理论分析-2">2、理论分析</h5>
3 e5 W7 W* u: A; b7 g) f<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>
  ~. l1 r5 w4 K4 P# K' ]# U5 K8 g. j<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>- J8 {8 ~5 `4 F* O5 k0 L* B
<h3 id="三一对多查询">三、一对多查询</h3>
1 o6 }4 z) U& Y3 D" B1 p<p>一对多查询最常见的场景是查询部门所包含的学生信息,由于一个部门对应多个学生,每个学生对应一个部门,因此称为一对多查询。</p>
) }; E; }5 B3 O1 ?$ U" e<h4 id="一查询单条记录-1">(一)查询单条记录</h4>1 G: E7 p6 I/ \8 x
<h5 id="1示例代码-3">1、示例代码</h5>  d9 t* ~( W. _( v7 L
<pre><code class="language-java">/**
, I; z6 d2 o1 \1 I * 查询单个部门(其中一个部门有多个用户)
% k% ^" [+ R/ v/ a% V */
3 o9 C6 b" Z3 e) ?/ D- Upublic DeptVo getOneDept(Integer deptId) {
; F# o* E+ s. B8 `$ n8 e, I# l$ q    // 查询部门基础信息
& y' a4 g( e7 U0 q    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class).eq(Dept::getDeptId, deptId);, h0 X% G# c% j$ s7 j6 v
    DeptVo deptVo = Optional.ofNullable(deptMapper.selectOne(wrapper)).map(DeptVo::new).orElse(null);; O3 b( g6 u* P) M% S9 \6 E2 E
    Optional.ofNullable(deptVo).ifPresent(this::addUserInfo);' V$ D. p3 U$ ?/ J: K/ D
    return deptVo;
* _! L0 \2 s/ W# ?1 Z$ ^}
, E/ X$ M- S. Q$ ^</code></pre>; ^3 e0 U4 Q- _, y3 f9 u
<p>补充附加信息</p>
1 X; r- Z0 {7 C; F9 s. K. u<pre><code class="language-java">private void addUserInfo(DeptVo deptVo) {
# t8 i, N" f, H9 F    // 根据部门deptId查询学生列表5 W7 W' K% n3 S3 }; }, j
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).eq(User::getDeptId, deptVo.getDeptId());
- [2 a- s( y" ]- W& z, `    List&lt;User&gt; users = userMapper.selectList(wrapper);
- g$ U  i/ K" ~7 ?6 U    deptVo.setUsers(users);
# ?& ]0 r$ }2 P& l}
" k  l. @% O8 }! t- Q* c; N</code></pre>, z  u: o2 g" P+ D7 Q$ {
<h5 id="2理论分析-3">2、理论分析</h5>' Q& Z1 |: P/ e
<p>整个过程共分为两个阶段:通过部门表中主键查询指定部门信息,通过学生表中部门ID外键查询学生信息,将结果合并,形成返回值(Vo)。</p>
( A8 d. X3 @& P2 ~8 L; F3 Z<p>一对多查询单条记录整个过程至多需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
6 _" F, ^8 R0 t9 d+ V- u<h4 id="二查询多条记录-1">(二)查询多条记录</h4>
8 J( c- N7 M8 P9 S; b+ _" a<h5 id="1示例代码-4">1、示例代码</h5>; k/ o. a* e- L$ M1 {' _
<pre><code class="language-java">/**
6 z, m  u5 U) B3 l1 Y * 查询多个部门(其中一个部门有多个用户)
) F% A( G2 y  }3 @/ O# `' V" P7 J" y */
! f' I  I& D& @/ [, tpublic List&lt;DeptVo&gt; getDeptByList() {
' f: u, N* h3 P' O- Y9 k. c9 g    // 按条件查询部门信息+ t% _( W: ]9 X% Y% k4 u) M
    List&lt;Dept&gt; deptList = deptMapper.selectList(Wrappers.emptyWrapper());* [; `" z! `9 f
    List&lt;DeptVo&gt; deptVos = deptList.stream().map(DeptVo::new).collect(toList());
& k% ~6 @6 w. j' B: @    if (deptVos.size() &gt; 0) {
6 p4 F! Q) G7 Y$ i6 T( s. s9 U8 U; s$ Y        addUserInfo(deptVos);  e! B% w6 H3 s( `# I: u- d1 v1 u5 Y
    }
$ y1 A5 s7 C( S- l" Q# m    return deptVos;. K4 V" J) \! X9 y) [. o' U& D, C
}
; H* A4 w% O) `* c! R5 w# \</code></pre>7 l$ W! o$ \- {+ s2 R4 _
<p>补充附加信息</p>
0 F# {. Q0 Q/ Q0 J1 Y5 Z) x" E<pre><code class="language-java">private void addUserInfo(List&lt;DeptVo&gt; deptVos) {( r) |- z- c4 Y$ f4 C' [8 @
    // 准备deptId方便批量查询用户信息6 m# o, N9 s+ _, F* r- k1 W
    Set&lt;Integer&gt; deptIds = deptVos.stream().map(Dept::getDeptId).collect(toSet());7 u2 o$ o7 J6 l) r
    // 用批量deptId查询用户信息
9 H; X$ {" O6 @, t$ G7 _    List&lt;User&gt; users = userMapper.selectList(Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds));8 n7 H# O( G2 N3 M4 W1 }, Q
    // 重点:将用户按照deptId分组+ r* I# {  f6 {2 M5 H! R+ L
    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));
; V( z% f8 i) l6 ]# m    // 合并结果,构造Vo,添加集合列表2 E8 }. c2 p5 Q- M
    deptVos.forEach(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));7 R! U2 a( t  K; b" G/ x! X
}
/ \! G# w# L9 H' ~  X</code></pre>
( I" W, [5 M4 R+ b  J<h5 id="2理论分析-4">2、理论分析</h5>2 [2 o. M3 t; M" C: m- A+ o5 c
<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
& O  m. N# \( D& x6 [<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
" N6 [  B6 b: K<h4 id="三查询多条记录分页-1">(三)查询多条记录(分页)</h4>
- F: j8 o% B5 q8 {<h5 id="1示例代码-5">1、示例代码</h5>
7 J3 z; }0 K2 c+ R5 x: z( X<pre><code class="language-java">/**
& }6 p: M6 r, E4 v6 T * 分页查询部门信息(其中一个部门有多个用户)
+ t: O% u( C* c */5 Y6 J+ N+ C" E; x& |9 ?6 y
public IPage&lt;DeptVo&gt; getDeptByPage(Page&lt;Dept&gt; page) {* W; k# _5 v4 N& g( T2 C- D! ]
    // 按条件查询部门信息
) P+ H8 U" [# F% `+ a    IPage&lt;Dept&gt; xDeptPage = deptMapper.selectPage(page, Wrappers.emptyWrapper());
* N4 }. y+ a6 M# t    IPage&lt;DeptVo&gt; deptVoPage = xDeptPage.convert(DeptVo::new);6 O4 T/ H" W6 t: [  Q5 o
    if (deptVoPage.getRecords().size() &gt; 0) {
% ]$ j. ]8 H6 l1 |5 A- l* r        addUserInfo(deptVoPage);
% ]1 _3 i$ H; \' y4 ?" q    }* p1 e& ~; I4 _, P+ \
    return deptVoPage;5 Y! f% S- B/ f4 Y+ z# p
}1 I1 F# b0 e+ N& z# V  |! [
</code></pre># ]% w* W3 S# g* ?. B$ K8 ^: [  K
<p>查询补充信息</p>
  z* y5 g* i2 `0 f<pre><code class="language-java">private void addUserInfo(IPage&lt;DeptVo&gt; deptVoPage) {' u/ n, L7 G! T7 }8 r
    // 准备deptId方便批量查询用户信息
& q/ |: a* t* c) W  h' e+ I    Set&lt;Integer&gt; deptIds = deptVoPage.getRecords().stream().map(Dept::getDeptId).collect(toSet());6 x/ {  b6 y* g3 {$ D% P4 k7 b
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds);  h5 x3 w4 Z# \5 ^1 r, C
    // 用批量deptId查询用户信息. b" z/ c3 ]- G5 N+ s' }
    List&lt;User&gt; users = userMapper.selectList(wrapper);
. H, U3 L9 f; s    // 重点:将用户按照deptId分组% V" {- Y6 [. c. R6 n
    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));
! C6 [- r9 x  b) |+ k! H    // 合并结果,构造Vo,添加集合列表
7 Z' N% o5 o/ J# d: D    deptVoPage.convert(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));
2 G) `1 |3 [; N. n% O5 h7 Y! W: |}. W1 ?. h' n. r; O
</code></pre>
5 h  k. [' ]6 f1 g9 p- b! q<h5 id="2理论分析-5">2、理论分析</h5>3 h. z  e8 e; C. h6 i- l
<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
9 w" y) b5 i9 v; ?& y) [- c' F<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
! \% W* W: `+ j8 w3 D5 n<h3 id="四多对多查询">四、多对多查询</h3>
; d  A2 @/ N* j$ D/ n9 X& H* |( ]& `<p>MybatisPlus 实现多对多查询是一件极富挑战性的任务,也是连接查询中最困难的部分。</p>
. a& E6 X% h0 z<p>以空间置换时间,借助于流式运算,解决多对多查询难题。</p>. ~9 y$ x# k- b3 B  }
<p>多对多查询相对于一对多查询,增加了流式分组运算、批量 HashMap 取值等内容。</p>$ |4 L4 f3 S4 ^' T* [
<img src="https://www.altitude.xin/typora/image-20211024115903848.png" >" x5 @0 P* Z7 P. Z; P
<h4 id="一查询单条记录-2">(一)查询单条记录</h4>) q0 h: `( b- Q% n. h/ N3 M
<p>查询单条记录一般是指通过两个查询条件查询出一条匹配表中的记录。</p>' B# O6 o* g) u! F3 z6 C
<h5 id="1示例代码-6">1、示例代码</h5>
4 X& X# ~) w' l( i<pre><code class="language-java">public StudentVo getStudent(Integer stuId) {& O7 k4 B& h' W( Q1 f
    // 通过主键查询学生信息
$ I3 L  P2 Z  ~! a    StudentVo studentVo = ConvertUtils.convertObj(getById(stuId), StudentVo::new);& K1 @: c/ Y, V& g5 V7 E* t1 h
    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).eq(StuSubRelation::getStuId, stuId);% h. W; p0 I0 a$ H) F7 Q5 _
    // 查询匹配关系
2 z+ k  I# k; t$ T. X" v7 j$ A    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);
8 t0 \& ?: E' Q8 K& ~; ~    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());- ]3 s  i7 ^- ^* `. ]0 d$ q
    if (studentVo != null &amp;&amp; subIds.size() &gt; 0) {
" Z7 ?. @6 q8 @: R0 u$ [        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));
. y( Q5 g" ^. y        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);$ _* [% I; j& q5 _$ f# P: C+ J5 z' R
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);* g7 ]; F% I+ s9 ?3 r6 a
        subBoList.forEach(e -&gt; e.setScore(table.get(stuId, e.getId())));
# n, L* O% C' B& k- f3 G0 g        studentVo.setSubList(subBoList);
9 _1 h# J9 h* \" u4 A. b    }
8 ?2 J/ P% N1 `, p/ z$ W    return studentVo;* C0 S# j" u" r# L. O% R6 y
}
6 a3 x: X0 \( f" l/ ~% w; z9 G8 `</code></pre>
0 D1 D, Y' ~7 S! n$ y- A<h5 id="2理论分析-6">2、理论分析</h5>( g0 V+ c3 d& Z$ Y( T1 q, M' B, ?
<p>多对多单条记录查询最多访问数据库3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>  R3 M, ?3 Y' _
<h4 id="二查询多条记录-2">(二)查询多条记录</h4>
. ]- y4 M: W6 ~2 ]' t<h5 id="1示例代码-7">1、示例代码</h5>1 A. `6 |& x/ `9 J0 i0 {- e
<pre><code class="language-java">public List&lt;StudentVo&gt; getStudentList() {
6 N9 B0 ]: x, P$ e8 M    // 通过主键查询学生信息, _( o! ~$ x( ~7 [9 d2 P4 K0 {8 x$ A- D
    List&lt;StudentVo&gt; studentVoList = ConvertUtils.convertList(list(), StudentVo::new);5 p" V$ e+ i6 M1 a6 A/ h
    // 批量查询学生ID0 W$ T% T- M( e0 @  h: w( j2 v7 r  I
    Set&lt;Integer&gt; stuIds = studentVoList.stream().map(Student::getId).collect(toSet());
4 S, W! i% l9 A4 Y+ m    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);9 T( }6 l3 E- p1 z, n  R! F
    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);; w0 [6 U, H6 y5 {
    // 批量查询课程ID
: Q9 V( D' P+ D    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());
7 |$ ^) ?# y. b7 x9 s    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {
4 M$ F: {7 |3 p+ Q5 Z0 |7 {        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);$ K+ E4 Y' h! L: E/ x0 R6 X
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));. _3 b7 k& Y% P0 O8 f6 P
        List&lt;SubjectBo&gt; subjectBoList = ConvertUtils.convertList(subList, SubjectBo::new);9 }3 A; |8 J- k, R# G2 H4 n
        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));
- E5 `1 \- d. a3 n" n+ V$ a* k: D        for (StudentVo studentVo : studentVoList) {
4 {9 K" O3 X! n3 p7 \* H. j            // 获取课程列表, C3 P6 |2 l6 J: o
            List&lt;SubjectBo&gt; list = ListUtils.select(subjectBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));9 X* q4 N! |+ w1 D  C% |1 m' P3 X7 j
            // 填充分数
- R6 _0 M9 F! h! T3 d            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));4 U( S/ O# {& }: r  c$ y$ C
            studentVo.setSubList(list);( e6 M% s7 k& C1 z
        }
, G  p( S1 Q& t7 z1 m5 E4 E    }
$ Y5 O& P) \' S  G) d# r" {( U; u    return studentVoList;
! l) a$ A! }# X; D! J}
: X# c' X3 g7 D# \6 G</code></pre>6 L9 a* e+ y1 x: g9 x7 V+ `$ W, f
<h5 id="2理论分析-7">2、理论分析</h5>4 F+ J0 K  T' x# Y; O+ M
<p>多对多N条记录查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>+ c; F, O# }9 G9 _- y$ T
<h4 id="三查询多条记录分页-2">(三)查询多条记录(分页)</h4>
' _* V: {! Y# a; W<h5 id="1示例代码-8">1、示例代码</h5>+ L- O0 B% Z4 _+ F2 t* ]+ n' V
<pre><code class="language-java">public IPage&lt;StudentVo&gt; getStudentPage(IPage&lt;Student&gt; page) {- y0 y: U- S+ g  N( ]: N, S
    // 通过主键查询学生信息" n1 O' E1 ~0 e$ I% e
    IPage&lt;StudentVo&gt; studentVoPage = ConvertUtils.convertPage(page(page), StudentVo::new);
9 j- {7 |8 O6 X( _$ h5 E3 F1 T* ~    // 批量查询学生ID
8 W6 J. O; G, [) Y: P    Set&lt;Integer&gt; stuIds = studentVoPage.getRecords().stream().map(Student::getId).collect(toSet());
' {0 j( W6 F  S$ b    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);. h) {$ S" S, P6 ^% \+ r8 f
    // 通过学生ID查询课程分数( Z$ A% d* ^. g
    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);# _; }9 V. U' r, `6 B
    // 批量查询课程ID
0 T( {- f+ T" x' P    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());' W3 p- Q& E; t9 x- n0 a; K' {
    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {7 m; g% d/ X5 v5 s8 f3 i3 Y
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);5 k( j# Y# s5 T& ?
        // 学生ID查询课程ID组8 `0 f& E/ a. [) n" u, k
        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));$ L. k* x: m4 f& w
7 O- i8 \9 N* M- {
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));: c( [. }6 n9 n
        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);
; l  T. l, e! q) g+ P        for (StudentVo studentVo : studentVoPage.getRecords()) {1 C6 M0 p2 V" C* D* {" d6 j' l" X+ [
            List&lt;SubjectBo&gt; list = ListUtils.select(subBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));; |5 n- }: |2 c
            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));+ o  g- Z$ t" z% B. o  A4 V
            studentVo.setSubList(list);1 @, r: Q3 R+ Y$ G
        }
! c, R2 f* a, F5 P5 ^    }
9 w5 ^7 K6 p( w* ?5 j  @    return studentVoPage;# s  n, h0 ^8 M. f6 |" N
}
9 T0 H, y: ?' S" e/ ~  q</code></pre>) l6 y5 p  V9 D* M& b( e: K
<h5 id="2理论分析-8">2、理论分析</h5>- r8 ]9 s$ F7 P6 E$ t3 k- F
<p>多对多N条记录分页查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>3 r4 `5 p6 [! B; ~+ T; F
<h3 id="五总结与拓展">五、总结与拓展</h3>% Q' p0 _$ e. X4 ~4 g( R1 O% J$ @1 p
<h4 id="一总结">(一)总结</h4>
) W' S1 x7 D7 [  U3 B* h<p>通过上述分析,能够用 MybatisPlus 解决多表连接查询中的<code>一对一</code>、<code>一对多</code>、<code>多对多</code>查询。</p>
' D% v$ J! h/ m<ul>
) N3 c4 V5 [. n; H<li>上述代码行文紧凑,充分利用 IDE 对 Lambda 表达式的支持,在编译期间完成对代码的检查。</li>
' U3 O3 O/ ^* p/ l7 X  n<li>业务逻辑清晰,可维护性、可修改性优势明显。</li>
8 A- ^9 Z. [$ o! Z<li>一次查询需要访问至多两次数据库,时间复杂度为<code>o(1)</code>,主键查询或者索引查询,查询效率高。</li>
" R; z! c( P5 I0 o. B8 b</ul>
8 ~2 a: S7 m4 f' K. f$ }<h4 id="二拓展">(二)拓展</h4>
. r  K0 o; d! e<p>MybatisPlus能很好的解决单表查询问题,同时借助在单表查询的封装能很好地解决连接查询问题。</p>* M% X! L1 s' a' Y/ @% T6 F2 @
<p>本方案不仅解决了连接查询问题,同时具备如下内容拓展:</p>
+ @9 D3 x* ~5 C<ul>6 D% z9 e- c  f) S4 O1 n
<li>当数据量较大时,仍然具有稳定的查询效率</li>/ p2 M1 U/ p. i* W  J' ]! V3 u
</ul>% v# t, N; _& ^* b
<p>当数据量达到百万级别时,传统的单表通过索引查询已经面临挑战,普通的多表连接查询性能随着数据量的递增呈现指数级下降。</p>
$ r( l6 U& B: r& w<p>本方案通过将连接查询转化为主键(索引)查询,查询性能等效于单表查询。</p>
+ V4 I. w& T6 I$ g- V! q# {/ s- i# o) Q<ul>
8 O8 \0 u$ T. X<li>与二级缓存配合使用进一步提高查询效率</li>9 E/ m& y" R9 U# o( G
</ul>
  g6 Z- k! |" S5 U( p<p>当所有的查询均转化为以单表为基础的查询后,方能安全的引入二级缓存。二级缓存的单表增删改查操作自适应联动,解决了二级缓存的脏数据问题。</p>/ |& j' c! b: L$ h+ |
<p><img src="https://img2022.cnblogs.com/blog/2731108/202202/2731108-20220212103110902-776916010.jpg" ></p>
3 Y( K4 N0 Y# ^% a4 S) G
& v( i6 t# d6 M3 I. w5 Q% z
回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|飞雪团队

GMT+8, 2025-1-25 12:17 , Processed in 0.072656 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表