飞雪团队

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

MybatisPlus多表连接查询

[复制链接]

5344

主题

5432

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
18354
发表于 2022-2-12 14:35:42 | 显示全部楼层 |阅读模式
, E3 U' F6 E# a
<h3 id="一序言">一、序言</h3>
3 E3 w) F4 w7 v2 G! Z& V! M$ a9 q<h4 id="一背景内容">(一)背景内容</h4>
1 e- n* D) n# h( ?1 ?2 s0 I6 S<p>软件应用技术架构中DAO层最常见的选型组件为MyBatis,熟悉MyBatis的朋友都清楚,曾几何时MyBatis是多么的风光,使用XML文件解决了复杂的数据库访问的难题。时至今日,曾经的屠龙者终成恶龙,以XML文件为基础的数据库访问技术变得臃肿、复杂,维护难度直线上升。</p>
+ a; N1 H; X' ^  A5 V" b<p>MybatisPlus对常见的数据库访问进行了封装,访问数据库大大减少了XML文件的依赖,开发者从臃肿的XML文件中获得了较大限度的解脱。</p>
8 z) z6 d! m4 o9 x: v<p>MybatisPlus官方并没有提供多表<code>连接查询</code>的通用解决方案,然而连接查询是相当普遍的需求。解决连接查询有两种需求,一种是继续使用MyBatis提供XML文件解决方式;另一种本文提供的解决方案。</p>
- Y" d* W- {3 F% J/ F2 Q0 ?0 N<p>事实上笔者强烈推荐彻底告别通过XML访问数据库,并不断探索新式更加友好、更加自然的解决方式,现分享最新的MybatisPlus技术的研究成果。</p>% R9 E* [! Q$ m+ Y" \' C
<img src="https://www.altitude.xin/typora/image-20211021114957682.png" >
1 P! h' \/ K7 b# D* T8 k<h4 id="二场景说明">(二)场景说明</h4>) [% L; _- O9 \( K
<p>为了说明连接查询的关系,这里以学生、课程及其关系为示例。</p>! f' O+ T/ l+ v6 F
<img src="https://www.altitude.xin/typora/image-20211020194255298.png" >
4 m, }# J! k2 g% S% F! @* K4 x" X<h4 id="三前期准备">(三)前期准备</h4>4 u/ T! I, l2 q6 S! _: N4 B
<p>此部分需要读者掌握以下内容:Lambda 表达式、特别是方法引用;函数式接口;流式运算等等,否则理解起来会有些吃力。</p>  y5 N+ d; `# a" @) _4 b
<img src="https://www.altitude.xin/typora/image-20211021135113431.png" >
" b& \7 I' s) o5 {<p>实体类与 Vo 的映射关系,作者创造性的引入特别构造器,合理利用继承关系,极大的方便了开发者完成实体类向 Vo 的转换。</p>- X/ H9 e( ]! Q1 _/ J
<p>空指针异常忽略不处理,借助[Optional]类实现,详情移步[Java8 新特性]查看。</p>, I7 J+ a0 ]5 B
<h3 id="二一对一查询">二、一对一查询</h3>" W, l& b' ]& e/ v
<p>一对一查询最典型的应用场景是将<code>id</code>替换成<code>name</code>,比如将<code>userId</code>替换成<code>userName</code>。</p>( ?, c; s( m) B" Q% |* z6 X
<h4 id="一查询单条记录">(一)查询单条记录</h4>
! O" F  z' J: V" Q; q, p<p>查询单条记录是指返回值仅有一条记录,通常是以唯一索引作为条件的返回查询结果。</p>
, ]( i- w. O  g<h5 id="1示例代码">1、示例代码</h5>3 s! x6 R' R0 j6 n5 I+ t
<pre><code class="language-java">/**
3 z7 o: z* F  X2 m5 V9 g * 查询单个学生信息(一个学生对应一个部门)6 m1 g& s( B' ~( t9 {, c7 q0 q
*/
' P$ ]0 @1 P- M- \; }; E% @9 Apublic UserVo getOneUser(Integer userId) {0 f( @) |0 M1 t6 p- B& u
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class)( i1 C8 n/ a$ i
        .eq(User::getUserId, userId);; O) I  e0 g/ ]" l
    // 先查询用户信息
4 N/ w  g5 }, P6 Q% Y    User user = userMapper.selectOne(wrapper);" k4 x( k( E; u* r4 o. G6 ]. \
    // 转化为Vo3 w  r: O3 V5 X- Y9 i7 q& I
    UserVo userVo = Optional.ofNullable(user).map(UserVo::new).orElse(null);' T/ w& d7 o# j2 e3 A' H$ N% B
    // 从其它表查询信息再封装到Vo+ P2 j4 P) G3 i- Q
    Optional.ofNullable(userVo).ifPresent(this::addDetpNameInfo);
1 L: b' I2 H( I* u/ a; E$ [# f6 `    return userVo;, j" _& E5 I. a3 |( F
}
* `  y  f' V$ C  K: X" c- `</code></pre>
$ d7 a! N7 T3 R<p>附属表信息补充</p>
( T. }' V! n( K) r8 V6 d+ l3 b<pre><code class="language-java">/**
1 f4 l: a" x7 S( }6 n- A; B * 补充部门名称信息
% _5 T/ L6 d" o5 h9 I1 e */& t' i/ Y3 a2 L/ z
private void addDetpNameInfo(UserVo userVo) {
% y4 o, W! k1 D" |8 E& S" |    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class)& `9 q& K  R6 G/ W6 N% q9 s& o8 |1 o! @
        .eq(Dept::getDeptId, userVo.getDeptId());  j" X, _# J9 E
    Dept dept = deptMapper.selectOne(wrapper);
- W$ O: A  E6 \$ D. C8 V5 ], G' D    Optional.ofNullable(dept).ifPresent(e -&gt; userVo.setDeptName(e.getDeptName()));$ \3 L( n' [* g. @! V7 Z
}
7 l2 s* H6 l+ m  N</code></pre>
- S2 B1 z  t; `( i. E<h5 id="2理论分析">2、理论分析</h5>
: N# Q) [, Y* e/ F* [- N<p>查询单个实体共分为两个步骤:根据条件查询主表数据(需处理空指针异常);封装 Vo 并查询附属表数据。</p>
+ s, _% ?# V! F8 W2 T<p>查询结果(VO)只有一条记录,需要查询两次数据库,时间复杂度为<code>O(1)</code>。</p>
2 n# E/ r3 z1 G- Y- C! E0 l. t<h4 id="二查询多条记录">(二)查询多条记录</h4>7 _' E8 v  O( h! K1 r- B
<p>查询多条记录是指查询结果为列表,通常是指以普通索引为条件的查询结果。</p>& I& R& s& X5 C# f
<h5 id="1示例代码-1">1、示例代码</h5>
# Q5 F& r7 P: P7 a% x9 c<pre><code class="language-java">/**3 u2 U: y0 B8 Y* P
* 批量查询学生信息(一个学生对应一个部门)
4 ^) k8 N0 d# A# P */
/ L/ r7 O! G; H. f! q8 f3 O, jpublic List&lt;UserVo&gt; getUserByList() {( a6 d9 I) j( f; e5 r
    // 先查询用户信息(表现形式为列表)
* u6 ?: n! n3 F( Z! q    List&lt;User&gt; user = userMapper.selectList(Wrappers.emptyWrapper());
5 m0 |! r7 [% R6 p# _    List&lt;UserVo&gt; userVos = user.stream().map(UserVo::new).collect(toList());
5 R$ @( j# i) u2 y    // 此步骤可以有多个
7 Q" ?% ~; R. F: e0 M. w    addDeptNameInfo(userVos);
) s( a3 p# S& L+ c0 R: Y    return userVos;& ?8 c. f( \" O0 a/ U( A
}6 N( X2 |0 t& [
</code></pre>
5 H( e* t0 S' k' V2 O: o( {<p>附属信息补充</p>
# u6 b) G0 _1 f0 F0 z- f<pre><code class="language-java">private void addDeptNameInfo(List&lt;UserVo&gt; userVos) {
, C3 k, m) E7 U: i- [    // 提取用户userId,方便批量查询
8 a$ E- w! |1 D. ?, u    Set&lt;Integer&gt; deptIds = userVos.stream().map(User::getDeptId).collect(toSet());5 ~( W1 F5 l' F  ]4 T6 A* M
    // 根据deptId查询deptName(查询前,先做非空判断)
# y$ W* K, L1 C! l& k8 e& J    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));. k& H. D& X! J8 @% I- R1 d2 p
    // 构造映射关系,方便匹配deptId与deptName) N4 l# {( d% J. t. ~& i5 J8 Z8 @
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));% A) X* T* O5 Q5 c# u' B$ k, e
    // 封装Vo,并添加到集合中(关键内容)
" K: R8 f" `- [. f    userVos.forEach(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));
+ o/ U, W7 S4 g2 v) V3 d1 j}
" a6 F3 h) s/ b" [7 y</code></pre>3 A+ w9 g7 `) \
<h5 id="2理论分析-1">2、理论分析</h5>/ W/ p: @# {0 z: Z- U' N: n
<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p># h5 E2 q) v$ |
<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>
+ L$ t5 e9 {: r' |<h4 id="三查询多条记录分页">(三)查询多条记录(分页)</h4>1 |& h5 ?9 H) f( ?! j3 h" _, B
<p>分页查询实体的思路与查询列表的思路相似,额外多处一步分页泛型转换。</p>
7 `0 G, ~7 Z. c! r! U% p<h5 id="1示例代码-2">1、示例代码</h5>, x$ m$ M  Q$ @! G7 p. }
<pre><code class="language-java">/**: O, d0 V1 f0 {
* 分页查询学生信息(一个学生对应一个部门)
1 {+ W1 ?. Y4 n' ]3 {8 s- M5 B */
3 U2 E, ^# R' `7 h% E# w* fpublic IPage&lt;UserVo&gt; getUserByPage(Page&lt;User&gt; page) {% ^! F; C: a! w  @6 n. [5 f  r4 |
    // 先查询用户信息
: h7 F6 x3 U% `) d" A' H( A1 w    IPage&lt;User&gt; xUserPage = userMapper.selectPage(page, Wrappers.emptyWrapper());
; ^/ J2 g2 H" U) l2 d# W% {4 I    // 初始化Vo
1 u8 X! Z( P( x3 |  c* c% G    IPage&lt;UserVo&gt; userVoPage = xUserPage.convert(UserVo::new);
$ M8 @& g4 {# A: o' O" y, Z    if (userVoPage.getRecords().size() &gt; 0) {
3 s; M6 G% \) z# Q2 Z5 P        addDeptNameInfo(userVoPage);7 s- z# t+ a. Q* j9 V
    }
4 z( b. B; ^2 H6 d. o    return userVoPage;' K0 ]. e) t. T( F8 t
}. q) G' L3 h' f9 [1 ?; f0 k
</code></pre>: s' \- p" G; w
<p>查询补充信息</p>* P" J$ E) z1 h/ P
<pre><code class="language-java">private void addDeptNameInfo(IPage&lt;UserVo&gt; userVoPage) {8 h+ ?' J) k( c4 w- P+ Z
    // 提取用户userId,方便批量查询+ K% `$ \  L0 [, X( l/ [! a
    Set&lt;Integer&gt; deptIds = userVoPage.getRecords().stream().map(User::getDeptId).collect(toSet());8 y' V" l* W7 S- e8 Z- \
    // 根据deptId查询deptName5 T7 C( S; s, ]# H4 R) c
    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
% c& x2 R" H, _* H6 n    // 构造映射关系,方便匹配deptId与deptName) Q6 _' J& k7 }
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));
, w  g' ?9 e% E  J( ?* T3 Q    // 将查询补充的信息添加到Vo中
9 \6 ~2 e7 h' H0 M6 Z7 ^7 C8 w    userVoPage.convert(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));
8 r4 a3 @5 J/ r$ c) E- z( v' `4 h}# I8 n* ~' ]2 O4 y
</code></pre>
$ C3 H; [4 T+ I1 X3 Z<p><code>IPage</code>接口中<code>convert</code>方法,能够实现在原实例上修改。</p>4 Y1 V' |8 ^, S0 q/ ?: `$ E
<h5 id="2理论分析-2">2、理论分析</h5>0 [3 {" Z$ S& g( l: Y
<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>- [, r$ N3 |  |0 N2 d3 w
<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>
3 F5 t7 x% f5 }: m6 q5 t. o<h3 id="三一对多查询">三、一对多查询</h3>8 U6 R, a0 Y' l" @
<p>一对多查询最常见的场景是查询部门所包含的学生信息,由于一个部门对应多个学生,每个学生对应一个部门,因此称为一对多查询。</p>. V% X2 s; q& ?+ G
<h4 id="一查询单条记录-1">(一)查询单条记录</h4>$ s4 x3 y8 V- D  K+ \, i
<h5 id="1示例代码-3">1、示例代码</h5>* _  T4 R) Q' |% `  Z1 P! O8 ]6 y
<pre><code class="language-java">/**
# e3 |, X& N* X* c4 q * 查询单个部门(其中一个部门有多个用户)/ N3 C; h$ N6 N4 ^7 E' S% h1 u
*/# E. ]* x/ j2 M. T
public DeptVo getOneDept(Integer deptId) {, j+ T$ l4 P/ v% T) `
    // 查询部门基础信息0 W# u: ^( P- X; @$ K; z
    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class).eq(Dept::getDeptId, deptId);
; S9 L7 y6 |( R1 o# v7 {, f( |" D    DeptVo deptVo = Optional.ofNullable(deptMapper.selectOne(wrapper)).map(DeptVo::new).orElse(null);9 w# @6 T3 K; y
    Optional.ofNullable(deptVo).ifPresent(this::addUserInfo);
. M0 |6 U+ V; C! A% [, f    return deptVo;
' {/ }1 n( z4 `}/ Z8 v. \2 H" v: `# C' ?
</code></pre>8 w. K, ?; Q  Q+ a
<p>补充附加信息</p>
$ o$ R9 W2 G- t, H1 c<pre><code class="language-java">private void addUserInfo(DeptVo deptVo) {9 n  `& W4 P/ D7 f
    // 根据部门deptId查询学生列表9 ^8 b( w- w- Z+ H* x- K) D: o
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).eq(User::getDeptId, deptVo.getDeptId());  s; L& P' j2 f+ a% q+ g, A' i5 @" u% W
    List&lt;User&gt; users = userMapper.selectList(wrapper);7 T  [. P1 Y1 f1 ], b
    deptVo.setUsers(users);
& X0 `; A" ^2 o1 F& o4 x* ~}! M  Q+ p$ K4 h
</code></pre>
& C  z! `; E4 A<h5 id="2理论分析-3">2、理论分析</h5>, T, F1 p4 ?" q& o. \. _
<p>整个过程共分为两个阶段:通过部门表中主键查询指定部门信息,通过学生表中部门ID外键查询学生信息,将结果合并,形成返回值(Vo)。</p>
% g9 ~, k6 X) t. p$ a" F' d% O<p>一对多查询单条记录整个过程至多需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>. A0 t( y1 M* e/ t
<h4 id="二查询多条记录-1">(二)查询多条记录</h4>  F& {  ?8 v' L
<h5 id="1示例代码-4">1、示例代码</h5>) F4 [& L) t9 H7 v8 J% g  z
<pre><code class="language-java">/**
7 B! E7 D7 o$ @0 \$ K) ~/ O * 查询多个部门(其中一个部门有多个用户)
* ?9 U5 T* i/ ~4 t0 W/ x */
3 R. P& |) K1 N! ?. l* B9 j0 apublic List&lt;DeptVo&gt; getDeptByList() {
% t& W; `0 W) \. p' D  C/ R    // 按条件查询部门信息
) L$ X' x4 ~! J' ~( U- t    List&lt;Dept&gt; deptList = deptMapper.selectList(Wrappers.emptyWrapper());
6 d( f9 B0 G- a5 h    List&lt;DeptVo&gt; deptVos = deptList.stream().map(DeptVo::new).collect(toList());
/ i  c/ Q2 s- _( R2 s    if (deptVos.size() &gt; 0) {
; ^0 b/ r3 H  t4 _( b7 f        addUserInfo(deptVos);
* ?8 J$ D' P# x, h0 H; p    }$ c+ h2 T4 G: u  u: k
    return deptVos;
7 z& s$ j: R+ S}( p2 ?: B& `" y, J
</code></pre>) W2 {% q+ ~- x5 _- K6 E5 N! g* R' c
<p>补充附加信息</p>1 R4 ?, h' v  i8 p$ I' h
<pre><code class="language-java">private void addUserInfo(List&lt;DeptVo&gt; deptVos) {7 |6 w) @7 s# v
    // 准备deptId方便批量查询用户信息9 r: G" `% Q7 ~3 s  }& I$ @0 ~* W$ \
    Set&lt;Integer&gt; deptIds = deptVos.stream().map(Dept::getDeptId).collect(toSet());& O) h* e" s' _; q% `
    // 用批量deptId查询用户信息, t+ G7 d2 [! X! I# B1 B
    List&lt;User&gt; users = userMapper.selectList(Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds));, a+ [5 J% H' c# K, {6 D$ E5 H
    // 重点:将用户按照deptId分组. z7 M# H& t- H: w8 J4 X
    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));8 K# [0 V3 q, W$ T' p) H
    // 合并结果,构造Vo,添加集合列表
! v& \# a2 w- K+ a" [  p    deptVos.forEach(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));* L* x7 G# k) D
}& v$ W4 d0 f5 l9 W# f8 {
</code></pre>
- w5 q3 k. i2 `. C<h5 id="2理论分析-4">2、理论分析</h5>
6 t& Z( X1 O2 X- n<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>. d. W5 R4 |7 N) y" A  S3 Q- X% @8 d" ^  b
<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
0 q* v4 [  J& e' @! E7 h' G<h4 id="三查询多条记录分页-1">(三)查询多条记录(分页)</h4>; [& e. b) x% B, P" @' ~
<h5 id="1示例代码-5">1、示例代码</h5>
1 C; m/ x0 C/ @1 L<pre><code class="language-java">/**
! N1 R8 _3 |" | * 分页查询部门信息(其中一个部门有多个用户)8 P% B; B" C! y- T+ C1 B
*/% Y2 `5 M7 w. C* x1 x. H3 x% X. N
public IPage&lt;DeptVo&gt; getDeptByPage(Page&lt;Dept&gt; page) {5 u0 L2 F6 @! n: s5 C: H
    // 按条件查询部门信息+ J9 i7 n1 n9 `- X
    IPage&lt;Dept&gt; xDeptPage = deptMapper.selectPage(page, Wrappers.emptyWrapper());
! ?& p$ f9 J) W+ \% n( N. S    IPage&lt;DeptVo&gt; deptVoPage = xDeptPage.convert(DeptVo::new);
8 y' F( J3 @3 u, N  y9 k) k    if (deptVoPage.getRecords().size() &gt; 0) {4 b. a0 x- ^, E& U" F# n
        addUserInfo(deptVoPage);" |% {% F4 O. P/ ]5 c" q
    }
+ R- |! O: D  r" [( Q$ s7 c3 ~+ I  E    return deptVoPage;# v4 d8 ?. M) v8 m
}
0 K& }# U1 v1 V</code></pre>+ }' V- V* N7 Z
<p>查询补充信息</p>
! y6 P! C7 u; i  o<pre><code class="language-java">private void addUserInfo(IPage&lt;DeptVo&gt; deptVoPage) {7 q- k3 i8 G! t* b) K( d# @
    // 准备deptId方便批量查询用户信息5 _, r5 w9 U6 a! `
    Set&lt;Integer&gt; deptIds = deptVoPage.getRecords().stream().map(Dept::getDeptId).collect(toSet());
" {6 h9 G0 C: c    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds);- J: p: l& F& v! y+ d+ S; p% M5 i
    // 用批量deptId查询用户信息
4 b6 n1 `' s3 T8 F6 m4 ]    List&lt;User&gt; users = userMapper.selectList(wrapper);6 B( a0 g8 a) \6 R- p
    // 重点:将用户按照deptId分组% M: X/ w  k4 D. Q( A
    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));
' q; K8 X# j- b. f' q7 ?8 W6 A' F0 `    // 合并结果,构造Vo,添加集合列表
4 S- w! Q: i4 a6 a4 i( W$ q! Z    deptVoPage.convert(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));
, z7 Q) T6 \# {/ Z}
) A6 O6 y/ V% q</code></pre>2 L, d4 g' j" t7 F5 C
<h5 id="2理论分析-5">2、理论分析</h5>6 i2 j+ Y& {; s0 ?
<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
1 |  }! o. {4 o- f1 g" z+ ^<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
3 Q- _! F* h! ]! g/ T: t0 |<h3 id="四多对多查询">四、多对多查询</h3>
6 A; P, G8 V$ H$ T<p>MybatisPlus 实现多对多查询是一件极富挑战性的任务,也是连接查询中最困难的部分。</p>
1 r* p4 z4 }: z7 G% r2 N6 U<p>以空间置换时间,借助于流式运算,解决多对多查询难题。</p>. e2 \7 [/ a8 c( ~9 l, N- K
<p>多对多查询相对于一对多查询,增加了流式分组运算、批量 HashMap 取值等内容。</p>
) E2 k7 N! a! G( j5 T6 h2 P<img src="https://www.altitude.xin/typora/image-20211024115903848.png" >& z7 r1 x7 b8 v- g& W
<h4 id="一查询单条记录-2">(一)查询单条记录</h4>9 B1 @  h7 r" N, A* @, c
<p>查询单条记录一般是指通过两个查询条件查询出一条匹配表中的记录。</p>/ I% T, y7 k' ^& b+ Z0 m
<h5 id="1示例代码-6">1、示例代码</h5>! ?' f+ \# a: \" l9 t" P
<pre><code class="language-java">public StudentVo getStudent(Integer stuId) {+ X3 A, V; ]3 r8 g4 R
    // 通过主键查询学生信息
; N; Z$ h+ v$ u; i4 Z9 B$ i) y' A* C    StudentVo studentVo = ConvertUtils.convertObj(getById(stuId), StudentVo::new);
: S: ?7 Q# d9 T: }. V. h( j    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).eq(StuSubRelation::getStuId, stuId);& o" m6 b* s1 @/ Z4 t5 r
    // 查询匹配关系( J2 ?; b6 H9 Y; }. l
    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);) P6 P# j3 T# V- [4 c; [
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());& k! A' f: O8 }
    if (studentVo != null &amp;&amp; subIds.size() &gt; 0) {
0 j/ Z. w4 ^! M: s2 P% i! N/ l7 {        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));- ], N% ^) z/ `; n: L# i
        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);) w: R" y2 @3 c: S% o/ [
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);
1 W' |) B$ W4 O4 C) t# Y7 E; B1 {        subBoList.forEach(e -&gt; e.setScore(table.get(stuId, e.getId())));
3 M' A- L8 y' T8 `* q- P        studentVo.setSubList(subBoList);
# D) W; \$ b0 G5 r    }" q7 X5 k9 r0 [) J
    return studentVo;- w2 h- Q; ~5 i( @' x
}! C+ I- s# O2 c% i1 u3 P
</code></pre>) {, o! r0 z( @2 P/ l$ Z  x
<h5 id="2理论分析-6">2、理论分析</h5>
# I: s: z% y' N/ T' @) D<p>多对多单条记录查询最多访问数据库3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>) I& b" M' r$ W8 N0 E8 K6 r
<h4 id="二查询多条记录-2">(二)查询多条记录</h4>  j/ q0 {& |5 {5 D
<h5 id="1示例代码-7">1、示例代码</h5>6 x6 Z) z3 {+ c1 c/ X: X  u$ }
<pre><code class="language-java">public List&lt;StudentVo&gt; getStudentList() {2 I) y; }) Z2 A) V" s  D
    // 通过主键查询学生信息2 ~* X0 A  i4 ?3 w! g
    List&lt;StudentVo&gt; studentVoList = ConvertUtils.convertList(list(), StudentVo::new);1 G0 G- C5 S- p$ S# Y& H
    // 批量查询学生ID
( W) R3 Y) z' G5 h2 ]* g    Set&lt;Integer&gt; stuIds = studentVoList.stream().map(Student::getId).collect(toSet());
$ f, T3 t! t  m! N, I; \& r7 r    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);
" E9 ?+ y6 ]4 v    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);
; n  R8 K; r3 n    // 批量查询课程ID& A% ?! P" V* s/ Z9 C/ t8 d
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());( c: J* l% ]! `/ ~+ P! m8 e" s  h; g
    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {
0 O' m1 w* p3 J+ y5 ^3 B        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);: q/ U5 e# ~. k& @; j* S: F
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));, b/ f9 A/ _# C
        List&lt;SubjectBo&gt; subjectBoList = ConvertUtils.convertList(subList, SubjectBo::new);
; {/ O/ V; u9 N- J+ ?" u        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));, x6 {; P' C% H
        for (StudentVo studentVo : studentVoList) {
4 s& I" Q! T7 W            // 获取课程列表! Q, I  g% @0 Q8 P# \
            List&lt;SubjectBo&gt; list = ListUtils.select(subjectBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));
+ a" t( G, V% d3 @2 g( c$ C3 a            // 填充分数5 `  E2 Q, d! R1 e
            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));
: a! a8 r% b& T  s* \            studentVo.setSubList(list);
! _  Y" L" K# F, D        }3 h3 ~& |( o' [2 u
    }
+ ?0 C3 Y+ c7 d1 ~& x    return studentVoList;$ o$ C/ {4 X. l+ n& v$ n
}- J) o. d' M8 Z) E# \! z2 H0 t
</code></pre>' I& O  z1 Z5 C/ N
<h5 id="2理论分析-7">2、理论分析</h5>
% v; S6 {* C/ G7 W& g: I6 n<p>多对多N条记录查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>0 y+ `! w: ^3 B
<h4 id="三查询多条记录分页-2">(三)查询多条记录(分页)</h4>
- V, _  E; ^1 c5 Y4 m<h5 id="1示例代码-8">1、示例代码</h5>  T  U+ z. W) D' M5 B: j
<pre><code class="language-java">public IPage&lt;StudentVo&gt; getStudentPage(IPage&lt;Student&gt; page) {
8 _6 e9 [( c0 Y! p2 F    // 通过主键查询学生信息
" W0 w/ n. D0 n" p! s- n    IPage&lt;StudentVo&gt; studentVoPage = ConvertUtils.convertPage(page(page), StudentVo::new);7 I& A- Z6 A$ }/ {9 l* H
    // 批量查询学生ID/ x. W& ?& A8 S- G% d
    Set&lt;Integer&gt; stuIds = studentVoPage.getRecords().stream().map(Student::getId).collect(toSet());
* L; p2 e/ U( U* i3 t    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);
9 C6 n0 O# d& B: F: b5 D3 r+ T    // 通过学生ID查询课程分数/ _- I9 ]! g+ F
    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);7 K7 T  a" w! t1 f, \' E
    // 批量查询课程ID2 u7 U& d1 R8 i0 d* B
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());
, @5 j2 }5 t9 S( Z    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {- {6 D# z) B9 c  M/ v  E
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);* I  F. D! H2 r1 B
        // 学生ID查询课程ID组- a& G6 ^. ^# p% u% K/ T
        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));: b9 b/ V/ B# [6 m& X
; d. ~5 t& E/ b0 v0 N; c7 Q
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));
- H7 x+ c3 n5 B) j2 ?) o, u2 C# W        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);
/ p: w2 W) ~" U5 B- \$ ^; T& q- e4 F        for (StudentVo studentVo : studentVoPage.getRecords()) {; Z3 e9 F2 o6 Y2 `
            List&lt;SubjectBo&gt; list = ListUtils.select(subBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));
- d$ K7 w9 f( M7 w' `            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));
6 D. Q. g" q- M/ N' D3 E, J            studentVo.setSubList(list);7 r, @* G# i& j8 a/ v% y- v0 \3 R
        }
/ j% i  i# Y. c4 d) C    }! y" U' i1 D0 e; t2 X
    return studentVoPage;9 P9 n/ e! f% z
}
& z$ F2 K  u3 [: L, z3 o" W</code></pre>
& i) S# {5 J* S2 j$ k+ D<h5 id="2理论分析-8">2、理论分析</h5>
# g. k4 q, I. U, Y/ e<p>多对多N条记录分页查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>
; b. j. G1 ~- O<h3 id="五总结与拓展">五、总结与拓展</h3>
5 Y2 t* M9 i' C<h4 id="一总结">(一)总结</h4>- [& x3 [8 M3 j. P5 A
<p>通过上述分析,能够用 MybatisPlus 解决多表连接查询中的<code>一对一</code>、<code>一对多</code>、<code>多对多</code>查询。</p>
# ^( d; P# H. H% t! b2 X  j4 w& [, L, a' t<ul>
# ^  ^9 s( j4 Y8 h2 \) g2 |: h<li>上述代码行文紧凑,充分利用 IDE 对 Lambda 表达式的支持,在编译期间完成对代码的检查。</li>3 y9 B2 ^! q$ I0 m
<li>业务逻辑清晰,可维护性、可修改性优势明显。</li>
3 h& U6 Q7 E$ e# J- @2 ?<li>一次查询需要访问至多两次数据库,时间复杂度为<code>o(1)</code>,主键查询或者索引查询,查询效率高。</li>/ P+ s+ V% z' B1 Y+ G
</ul>
+ Y8 S/ c2 F! y* Q8 z2 f<h4 id="二拓展">(二)拓展</h4>( D, g% h3 w( A8 T* J, U
<p>MybatisPlus能很好的解决单表查询问题,同时借助在单表查询的封装能很好地解决连接查询问题。</p>
) T& S" d" [, z2 ]( i( h6 Y6 B<p>本方案不仅解决了连接查询问题,同时具备如下内容拓展:</p>
# Y; S  D6 M/ `: c<ul>3 |6 ?- P& B7 a3 c4 z
<li>当数据量较大时,仍然具有稳定的查询效率</li>
* ]& V# u+ E6 S' g, Q</ul>! X9 ?8 v6 a4 z% N4 `
<p>当数据量达到百万级别时,传统的单表通过索引查询已经面临挑战,普通的多表连接查询性能随着数据量的递增呈现指数级下降。</p>
' }8 d% A, `- }<p>本方案通过将连接查询转化为主键(索引)查询,查询性能等效于单表查询。</p>
! U0 ]+ u8 L4 g& E' d<ul>6 l  J1 m! d( d3 k
<li>与二级缓存配合使用进一步提高查询效率</li>
' ^+ a8 t8 ]8 N! B9 z</ul>0 c# Q& r! T0 j6 q  N
<p>当所有的查询均转化为以单表为基础的查询后,方能安全的引入二级缓存。二级缓存的单表增删改查操作自适应联动,解决了二级缓存的脏数据问题。</p>3 M* o7 m9 |: s5 y( T! L! C" A" G) a0 ?0 l
<p><img src="https://img2022.cnblogs.com/blog/2731108/202202/2731108-20220212103110902-776916010.jpg" ></p>
- O8 F- T! N2 z' w8 _# Q1 M  r* R3 |4 ~  T
回复

使用道具 举报

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

本版积分规则

手机版|飞雪团队

GMT+8, 2024-11-24 02:42 , Processed in 0.069223 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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