飞雪团队

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

MybatisPlus多表连接查询

[复制链接]

7995

主题

8083

帖子

2万

积分

管理员

Rank: 9Rank: 9Rank: 9

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

使用道具 举报

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

本版积分规则

手机版|飞雪团队

GMT+8, 2025-12-1 07:41 , Processed in 0.068832 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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