飞雪团队

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

MybatisPlus多表连接查询

[复制链接]

5344

主题

5432

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
18354
发表于 2022-2-12 14:35:42 | 显示全部楼层 |阅读模式

+ f7 Q3 y- O2 Z0 I3 f& K4 i<h3 id="一序言">一、序言</h3>* U. e! J) X: _( d
<h4 id="一背景内容">(一)背景内容</h4>6 ?  C" J+ r7 N+ Y- Y- k
<p>软件应用技术架构中DAO层最常见的选型组件为MyBatis,熟悉MyBatis的朋友都清楚,曾几何时MyBatis是多么的风光,使用XML文件解决了复杂的数据库访问的难题。时至今日,曾经的屠龙者终成恶龙,以XML文件为基础的数据库访问技术变得臃肿、复杂,维护难度直线上升。</p>
7 Q! E/ D+ z8 V7 ^0 }! ?+ J) x<p>MybatisPlus对常见的数据库访问进行了封装,访问数据库大大减少了XML文件的依赖,开发者从臃肿的XML文件中获得了较大限度的解脱。</p>
( Q7 I; ]8 k4 ~! E- W<p>MybatisPlus官方并没有提供多表<code>连接查询</code>的通用解决方案,然而连接查询是相当普遍的需求。解决连接查询有两种需求,一种是继续使用MyBatis提供XML文件解决方式;另一种本文提供的解决方案。</p>
! v' @) ?, H) j  M. }0 G4 N<p>事实上笔者强烈推荐彻底告别通过XML访问数据库,并不断探索新式更加友好、更加自然的解决方式,现分享最新的MybatisPlus技术的研究成果。</p>
% A. X5 y% b1 O<img src="https://www.altitude.xin/typora/image-20211021114957682.png" >+ P7 B, z7 e/ q* B5 f+ _
<h4 id="二场景说明">(二)场景说明</h4>
, ?3 P8 x% K! N+ I0 ~<p>为了说明连接查询的关系,这里以学生、课程及其关系为示例。</p>
# [2 g  J0 q1 T9 p6 B" W<img src="https://www.altitude.xin/typora/image-20211020194255298.png" >) T. J; `# A2 Z' T" t. V& z; @( Q3 b0 k
<h4 id="三前期准备">(三)前期准备</h4>
5 B" h4 f. i" |/ {! I/ Q<p>此部分需要读者掌握以下内容:Lambda 表达式、特别是方法引用;函数式接口;流式运算等等,否则理解起来会有些吃力。</p>5 F( O- g) j3 O, P
<img src="https://www.altitude.xin/typora/image-20211021135113431.png" >4 Z) \/ H! k: s7 T
<p>实体类与 Vo 的映射关系,作者创造性的引入特别构造器,合理利用继承关系,极大的方便了开发者完成实体类向 Vo 的转换。</p>- Z0 q$ P! C5 n
<p>空指针异常忽略不处理,借助[Optional]类实现,详情移步[Java8 新特性]查看。</p>
1 R9 T4 B6 p# l. |( l0 f- i<h3 id="二一对一查询">二、一对一查询</h3>
: j, c- Y  ~% [" \<p>一对一查询最典型的应用场景是将<code>id</code>替换成<code>name</code>,比如将<code>userId</code>替换成<code>userName</code>。</p>
; l9 F0 y6 q, h0 R6 w0 y$ Y<h4 id="一查询单条记录">(一)查询单条记录</h4>" A1 v& k# Q  X6 v
<p>查询单条记录是指返回值仅有一条记录,通常是以唯一索引作为条件的返回查询结果。</p>. q8 |3 u5 F' g/ q
<h5 id="1示例代码">1、示例代码</h5>8 C' d. k; q" u  ^; a* E
<pre><code class="language-java">/**) M3 K+ k! E; i1 {" W/ ?
* 查询单个学生信息(一个学生对应一个部门)) H7 \4 [, B% K) i9 g9 s
*/' q7 |/ K$ n+ J3 v9 U% E' I9 ^# ~
public UserVo getOneUser(Integer userId) {
$ j) f; E. s8 Y' X    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class)
- ]( {8 N- A3 v5 M9 D# }/ I        .eq(User::getUserId, userId);
0 H" L& }% L( N, k9 s% F5 K    // 先查询用户信息% I9 ?+ ~& W% X' \6 S
    User user = userMapper.selectOne(wrapper);1 v, M+ m$ g$ }: [+ d1 y' B  Q) i
    // 转化为Vo+ [  S2 h/ Z1 N: x6 S5 H5 c
    UserVo userVo = Optional.ofNullable(user).map(UserVo::new).orElse(null);0 H' U% U2 @( f
    // 从其它表查询信息再封装到Vo* D" Z5 D& c. `4 x) t* U5 g
    Optional.ofNullable(userVo).ifPresent(this::addDetpNameInfo);/ T5 Y7 |# }. V& G
    return userVo;( n/ [% a& y  K# `3 c9 x6 G0 f2 |
}7 F) T, O7 M! K* T- `) Q
</code></pre>2 S1 d$ ]# c" K' \! c; ~) C1 S
<p>附属表信息补充</p>
. H1 U' n: b# N<pre><code class="language-java">/**
0 |1 N$ P! }$ |3 U4 f * 补充部门名称信息% t7 v$ w3 y0 p) N& r$ {
*/3 J+ S9 k( E& i: d/ r( n" q
private void addDetpNameInfo(UserVo userVo) {# R3 ?4 E0 F9 `5 U0 d8 I
    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class)' t4 i% o9 a  o& m) n0 s
        .eq(Dept::getDeptId, userVo.getDeptId());
: I5 S, b" s2 ^/ ^    Dept dept = deptMapper.selectOne(wrapper);& H+ M4 m0 M/ O. f# c* u
    Optional.ofNullable(dept).ifPresent(e -&gt; userVo.setDeptName(e.getDeptName()));
; b2 R% x4 Y2 c}
7 k& q, J5 u" B</code></pre>7 L+ z0 @, p2 X
<h5 id="2理论分析">2、理论分析</h5>
2 [* f1 I9 m( R! }& N9 F<p>查询单个实体共分为两个步骤:根据条件查询主表数据(需处理空指针异常);封装 Vo 并查询附属表数据。</p>
- j- A5 Z+ F6 A0 c* \9 ~! A6 ]0 }: d<p>查询结果(VO)只有一条记录,需要查询两次数据库,时间复杂度为<code>O(1)</code>。</p>. S) n8 ]5 _/ C
<h4 id="二查询多条记录">(二)查询多条记录</h4>( I% d0 y0 [: ~% w, ?4 J
<p>查询多条记录是指查询结果为列表,通常是指以普通索引为条件的查询结果。</p>2 k" F$ B( t5 D
<h5 id="1示例代码-1">1、示例代码</h5>
1 W; Q$ W( }7 g<pre><code class="language-java">/**
1 o% R2 W; O7 l! E; f& h! _ * 批量查询学生信息(一个学生对应一个部门)
9 e/ ~6 a- f7 A* f */
; Z, T) E, o# U& }public List&lt;UserVo&gt; getUserByList() {2 K  c- _' X/ O/ O. i$ v
    // 先查询用户信息(表现形式为列表)
0 B  G+ ^" Q7 [4 h# b) y    List&lt;User&gt; user = userMapper.selectList(Wrappers.emptyWrapper());
5 G4 @6 }( n6 r- y* @    List&lt;UserVo&gt; userVos = user.stream().map(UserVo::new).collect(toList());
& V2 t2 _) w; P8 q+ y) w% l* j5 U1 p* g) [    // 此步骤可以有多个
& p( z$ ^. X5 b( `    addDeptNameInfo(userVos);
0 ^% Y- m4 Z  {# B    return userVos;
, _9 K6 C# p" N9 w5 D& ^}& i$ y) H3 ^' L$ G4 p; G+ d+ _
</code></pre>
+ U9 ?. x' U. l. z4 q<p>附属信息补充</p>) }3 U! H! t3 O2 ]: l) ?
<pre><code class="language-java">private void addDeptNameInfo(List&lt;UserVo&gt; userVos) {
$ }, ^0 `0 h  U% |# T    // 提取用户userId,方便批量查询% N2 ?/ @, y: G5 d, v
    Set&lt;Integer&gt; deptIds = userVos.stream().map(User::getDeptId).collect(toSet());6 ~8 X1 G: A* D1 o' H# U  J. Y
    // 根据deptId查询deptName(查询前,先做非空判断)
& F  ]# d: w% K4 W$ [  f6 Q    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));! u8 _" p9 O) O7 F1 J* F
    // 构造映射关系,方便匹配deptId与deptName. u9 w9 n% u# d) p+ x
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));
$ `* ~# d  M* H1 O" F7 ^    // 封装Vo,并添加到集合中(关键内容)
: e( T6 d3 z3 m5 P& ]2 d9 R    userVos.forEach(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));4 k" M" }. D% d& H8 j& Z# k9 p
}4 G& E* h% `* f+ ]# @! `. i; n
</code></pre>5 H# Z# S* `$ d* A
<h5 id="2理论分析-1">2、理论分析</h5>
. P6 J. o$ \4 \<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>
  M( B! V  L" I& _2 K8 y( J* p* J<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>' c2 `* C$ l4 A& U0 _* B4 b; K# f1 q1 i
<h4 id="三查询多条记录分页">(三)查询多条记录(分页)</h4>$ z1 X( L- |  y  D1 {6 n" X# i
<p>分页查询实体的思路与查询列表的思路相似,额外多处一步分页泛型转换。</p>( p3 t$ B8 z2 }& x, I  v0 u9 w
<h5 id="1示例代码-2">1、示例代码</h5>
9 h& @2 I* s$ ?7 ]9 s<pre><code class="language-java">/**
' M/ [$ ~0 _0 i! l9 u * 分页查询学生信息(一个学生对应一个部门)5 A2 ~0 j0 B* |- Y
*/
$ J$ N6 @+ Q9 {* H7 `. Jpublic IPage&lt;UserVo&gt; getUserByPage(Page&lt;User&gt; page) {/ v& d7 B8 d  N( @8 v5 a
    // 先查询用户信息: C$ ~" N8 E0 ~; n  g9 D9 V
    IPage&lt;User&gt; xUserPage = userMapper.selectPage(page, Wrappers.emptyWrapper());6 @. p$ @3 m4 A# T4 I- \" h3 n
    // 初始化Vo
( a. y0 }7 F; w% N    IPage&lt;UserVo&gt; userVoPage = xUserPage.convert(UserVo::new);4 z5 m1 @' s" O$ h, s2 r( b* @. i
    if (userVoPage.getRecords().size() &gt; 0) {
5 q( M* L, F# X( N5 k        addDeptNameInfo(userVoPage);
3 [5 a' P: b5 x" ^/ T1 k) o    }
/ J, @6 o, T" g0 y1 O: _    return userVoPage;" A6 y; x- K& y- H
}1 l# B, C: S% o/ C/ C
</code></pre>
. ]3 x3 @3 V8 Q! V# T% ?<p>查询补充信息</p>
- p" k6 B: H, u# t9 f1 r<pre><code class="language-java">private void addDeptNameInfo(IPage&lt;UserVo&gt; userVoPage) {
) F. B7 [" B: ?8 [  n7 w    // 提取用户userId,方便批量查询
; {9 R& c, B0 b    Set&lt;Integer&gt; deptIds = userVoPage.getRecords().stream().map(User::getDeptId).collect(toSet());
4 [6 k; j) {9 ?2 F4 E  b3 }# G6 ~    // 根据deptId查询deptName0 b+ P, z: T: E9 v& X
    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
4 a$ B0 l; H. Y5 \9 ?  @. {    // 构造映射关系,方便匹配deptId与deptName3 ]$ W  K; r& p4 y/ G8 Z) k8 z
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));6 X2 x& A2 [4 S$ R" U$ M  B
    // 将查询补充的信息添加到Vo中- ?6 V6 e$ k4 `. F7 g' M
    userVoPage.convert(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));9 a) e) [  B8 N4 q, n* `  }6 E1 o* ]9 ^
}
2 f, ]6 Y7 L  N8 o- A. Y</code></pre>
! _) Q, z  O* k2 W& V* k7 T<p><code>IPage</code>接口中<code>convert</code>方法,能够实现在原实例上修改。</p>3 V, M4 [( K! d
<h5 id="2理论分析-2">2、理论分析</h5>+ p9 h* C3 f" e
<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>: v  H' N9 D1 P
<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>5 L2 G5 q7 O1 `9 y: `
<h3 id="三一对多查询">三、一对多查询</h3>; O1 ]+ ~5 U5 \) f4 Y' ?- i
<p>一对多查询最常见的场景是查询部门所包含的学生信息,由于一个部门对应多个学生,每个学生对应一个部门,因此称为一对多查询。</p>' V1 ]% a% q/ Q% a7 @5 D
<h4 id="一查询单条记录-1">(一)查询单条记录</h4>
0 F: H7 [9 q' Y- S<h5 id="1示例代码-3">1、示例代码</h5># i8 O- e% t  |% l) g+ T9 e
<pre><code class="language-java">/**" Y/ \- U& e9 _, B7 r  [, ?
* 查询单个部门(其中一个部门有多个用户)
; Y; [  _/ S6 ^9 R */
" z/ b. v5 q2 s; H) i& Cpublic DeptVo getOneDept(Integer deptId) {
( p# B% m) T# q9 C4 E    // 查询部门基础信息
4 g$ L# r% @: O+ q+ r    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class).eq(Dept::getDeptId, deptId);
  }' r( n. o$ v& b" o    DeptVo deptVo = Optional.ofNullable(deptMapper.selectOne(wrapper)).map(DeptVo::new).orElse(null);
1 I# x& Z9 b- `+ L% L* T    Optional.ofNullable(deptVo).ifPresent(this::addUserInfo);
( j3 u" F% C, M    return deptVo;/ F' w5 T- X% J% c
}$ n0 T. f0 y9 }' F6 k
</code></pre>* m; _: F3 x% i
<p>补充附加信息</p>
& i/ x# ?' k! C- f  }<pre><code class="language-java">private void addUserInfo(DeptVo deptVo) {7 S, Z% Z! ^8 B7 p& o
    // 根据部门deptId查询学生列表4 d9 |; g$ @, P* j3 Q
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).eq(User::getDeptId, deptVo.getDeptId());
* A5 |& R! v1 `! {5 ]8 ^) M    List&lt;User&gt; users = userMapper.selectList(wrapper);& I+ M( p& ^1 U
    deptVo.setUsers(users);
( y* D6 d( q; j$ {}
" g0 D" _; u/ g2 ~</code></pre>; e5 G, V: Y* r7 |
<h5 id="2理论分析-3">2、理论分析</h5>
# W3 L% ?: t& [<p>整个过程共分为两个阶段:通过部门表中主键查询指定部门信息,通过学生表中部门ID外键查询学生信息,将结果合并,形成返回值(Vo)。</p>
' V7 X) P# F$ V6 t<p>一对多查询单条记录整个过程至多需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
; n5 i6 h' Y% ]- S7 |<h4 id="二查询多条记录-1">(二)查询多条记录</h4>
( a+ F7 y9 e' ]0 Q<h5 id="1示例代码-4">1、示例代码</h5>
+ z! M+ S( A% J" u- B9 M+ R<pre><code class="language-java">/**! U, u. j4 S6 Z# P4 A  f
* 查询多个部门(其中一个部门有多个用户)
7 [! G0 ]  k  E+ ^ */5 m$ ~9 g$ B: v0 R" j% F& U6 l
public List&lt;DeptVo&gt; getDeptByList() {4 N, K- F' l# Q9 g" @
    // 按条件查询部门信息
4 M& N' C0 U8 y5 x/ ^    List&lt;Dept&gt; deptList = deptMapper.selectList(Wrappers.emptyWrapper());  q3 L7 x& F( E9 ?5 Z
    List&lt;DeptVo&gt; deptVos = deptList.stream().map(DeptVo::new).collect(toList());% E5 i; X! v) [9 l
    if (deptVos.size() &gt; 0) {
+ ^) K& z7 f% n, ^+ L# L# b( h        addUserInfo(deptVos);
( ]  Y5 G) d+ }9 Y3 x; S% Y9 M7 o    }# f3 g- k% t' I! ?/ N
    return deptVos;
, l% s2 K5 U8 V  E}* r5 o% d" x$ y7 x, c( f
</code></pre>6 V) z' z$ s; {7 ]+ R+ t/ O0 C
<p>补充附加信息</p>
2 t/ f$ |% f! V1 M, j/ a<pre><code class="language-java">private void addUserInfo(List&lt;DeptVo&gt; deptVos) {
. I- C: |6 Z5 j7 s. x    // 准备deptId方便批量查询用户信息
% ]# p* ?" W- [4 y$ P    Set&lt;Integer&gt; deptIds = deptVos.stream().map(Dept::getDeptId).collect(toSet());
/ |' e$ J/ T; `    // 用批量deptId查询用户信息! b7 H8 a2 G: s! z- E) \* `4 K
    List&lt;User&gt; users = userMapper.selectList(Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds));# f& v4 B0 Z$ S( n9 q
    // 重点:将用户按照deptId分组
( [+ p/ \' P7 b0 @) A    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));! K! E* `0 w+ l. m5 l; @
    // 合并结果,构造Vo,添加集合列表7 M7 z" P! `0 B+ X, k
    deptVos.forEach(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));
: r1 V7 f. Y7 _& e}/ `8 x& {% H5 }# }" V- b  c
</code></pre>
: v  c: b% k' n# _6 i  ^5 p0 w# I<h5 id="2理论分析-4">2、理论分析</h5>; d9 e- l: P# d8 b
<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>. R% E4 b+ Y; `/ j, q9 L
<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>  ]: B. C* d" x$ ~( s' a/ }
<h4 id="三查询多条记录分页-1">(三)查询多条记录(分页)</h4>4 W7 |. T$ ?3 L4 j7 V
<h5 id="1示例代码-5">1、示例代码</h5>' l' Y3 z5 T5 Q4 O) \* Z
<pre><code class="language-java">/**/ T; `+ y9 a& B$ D! S
* 分页查询部门信息(其中一个部门有多个用户)
1 g; @) E. Q, T1 I& {- { */8 f' R& X1 T1 j, D2 V+ A8 w
public IPage&lt;DeptVo&gt; getDeptByPage(Page&lt;Dept&gt; page) {7 N: }+ t, u6 D1 l
    // 按条件查询部门信息
% x# e# \2 N* t1 d/ B% p+ D" o! J( }1 k    IPage&lt;Dept&gt; xDeptPage = deptMapper.selectPage(page, Wrappers.emptyWrapper());3 @3 W4 M, E! O" H! _  G$ s
    IPage&lt;DeptVo&gt; deptVoPage = xDeptPage.convert(DeptVo::new);% k- P! r8 A* E3 o6 d' V
    if (deptVoPage.getRecords().size() &gt; 0) {: [2 r6 p" R! s, D: z8 q
        addUserInfo(deptVoPage);" e6 Q3 g& s* y9 ~, M6 j! y
    }
4 V6 G5 N+ O  m+ ~' E9 Q# }    return deptVoPage;! s6 ]. v8 v/ H
}
( y# n& {  \% c' I</code></pre>
, e% v( n; s8 v# w1 R& H5 T<p>查询补充信息</p>
5 {" N% R" s, W2 S9 s/ C<pre><code class="language-java">private void addUserInfo(IPage&lt;DeptVo&gt; deptVoPage) {
. O1 P% @3 f1 g0 }% h% ]    // 准备deptId方便批量查询用户信息
$ W1 u% P# ]; h0 D. \; K    Set&lt;Integer&gt; deptIds = deptVoPage.getRecords().stream().map(Dept::getDeptId).collect(toSet());
( ~9 c7 e3 Z1 q    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds);
% p; e' C' e& w4 b+ Y7 M    // 用批量deptId查询用户信息
$ _: ?0 R" G( o    List&lt;User&gt; users = userMapper.selectList(wrapper);
; a; {. A: e+ R. b    // 重点:将用户按照deptId分组% h" r5 a! j' Y1 \
    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));
9 ~3 j/ N" T) O6 |0 p& y: V3 }    // 合并结果,构造Vo,添加集合列表' v  Z) g5 E7 \0 _( E. b
    deptVoPage.convert(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));0 G, b' L) B" H* x0 ^+ k- e
}  r! Z; C& C0 l+ c5 l& I
</code></pre>
$ v* m6 w- j' K: g6 M<h5 id="2理论分析-5">2、理论分析</h5>
2 t, _3 \; |8 ~/ F) I. i: p<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
6 M: `! y: J& m9 O  [  L+ f3 S<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
7 L9 T  d3 r0 d: q( M<h3 id="四多对多查询">四、多对多查询</h3>
: y. g+ @7 Z, Y. v. t/ L<p>MybatisPlus 实现多对多查询是一件极富挑战性的任务,也是连接查询中最困难的部分。</p>
! d  P2 R, p: V$ h5 |<p>以空间置换时间,借助于流式运算,解决多对多查询难题。</p>
# T5 _* ?- m  v6 I) D% ^<p>多对多查询相对于一对多查询,增加了流式分组运算、批量 HashMap 取值等内容。</p>
3 s% }  E5 ]% l) x/ w- a! A' K$ p<img src="https://www.altitude.xin/typora/image-20211024115903848.png" >
2 y9 {. e% I& x4 B% E- X$ a. H/ ]<h4 id="一查询单条记录-2">(一)查询单条记录</h4>9 m0 I) K8 a( E# i5 V2 w
<p>查询单条记录一般是指通过两个查询条件查询出一条匹配表中的记录。</p>2 m7 {- c; n( V1 o  e
<h5 id="1示例代码-6">1、示例代码</h5>0 k# r# h  W$ \! D5 q( N: e0 C
<pre><code class="language-java">public StudentVo getStudent(Integer stuId) {
3 x( B- y5 D5 J. k( g( p3 s    // 通过主键查询学生信息! v3 g8 s- d  l, m
    StudentVo studentVo = ConvertUtils.convertObj(getById(stuId), StudentVo::new);0 Z( M6 d) P; y' x# n. q1 X
    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).eq(StuSubRelation::getStuId, stuId);
: s1 i. G! w& ~7 ^    // 查询匹配关系
, K, r1 T) N$ n; R- D* M) H8 p6 v) C    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);) p# _" c7 A" s
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());
: v: e% F( [1 q* d, e    if (studentVo != null &amp;&amp; subIds.size() &gt; 0) {
3 s$ z1 f4 U3 O        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));3 @( t6 I/ p/ K$ t
        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);
- g$ t- g9 L3 t& _' h+ g( C        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);
9 m4 q7 z$ x- t        subBoList.forEach(e -&gt; e.setScore(table.get(stuId, e.getId())));! O  j) u) M7 t  A" d
        studentVo.setSubList(subBoList);3 k) s/ K- w* q9 Y6 n/ F, S
    }  i9 i4 L+ u6 w& h4 ?
    return studentVo;
2 H0 a$ D+ a7 m9 T4 _}8 A- f/ W1 J7 J0 u7 r8 r
</code></pre>
1 F% s3 }7 I+ Q; y$ `6 V) ^0 [. t<h5 id="2理论分析-6">2、理论分析</h5>
7 X/ q2 L0 {4 k9 f+ h2 Q* m<p>多对多单条记录查询最多访问数据库3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>
/ B/ K! e3 |$ I2 P: K: o; n1 D# B<h4 id="二查询多条记录-2">(二)查询多条记录</h4>
, l/ q: k- x5 Y<h5 id="1示例代码-7">1、示例代码</h5>  Z7 }  U2 v: x3 f8 U. K) V$ {
<pre><code class="language-java">public List&lt;StudentVo&gt; getStudentList() {: E/ ?3 V: M: I$ B
    // 通过主键查询学生信息8 o$ U. l" Q% v; b  S
    List&lt;StudentVo&gt; studentVoList = ConvertUtils.convertList(list(), StudentVo::new);
: m6 ]+ A) E* C: k9 E" {/ I8 G    // 批量查询学生ID
: z8 J3 d+ V3 F6 `( k$ V    Set&lt;Integer&gt; stuIds = studentVoList.stream().map(Student::getId).collect(toSet());. X$ r8 }$ b# c* t. D& d4 J
    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);
$ R- ^. a* j8 t1 `/ v/ i! P4 D    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);- n" n( A, [% m# p8 H% p
    // 批量查询课程ID
# T7 }4 _& x( R; `, I1 I    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());! W# D6 K3 _1 k% s
    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {. _: O) ^( C4 @0 J5 |+ P
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);; i6 h2 C# N9 }) j2 y9 C
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));5 h1 B$ E" h6 ~2 Z* h% W" P* Q
        List&lt;SubjectBo&gt; subjectBoList = ConvertUtils.convertList(subList, SubjectBo::new);
2 I8 V1 V  V5 S0 W9 B: u9 s        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));
1 i5 w. m, A. P& R2 j; a        for (StudentVo studentVo : studentVoList) {8 x+ O" H- G& p4 ^+ p
            // 获取课程列表
! s- W% N" ^0 }. w) M$ I5 E            List&lt;SubjectBo&gt; list = ListUtils.select(subjectBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));" f/ v3 I: g, t1 ~8 P5 N9 m# z" H
            // 填充分数1 Q5 t, O% @: a& u  B
            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));
8 z( X  I: {- u+ ^# W3 w& Q8 U            studentVo.setSubList(list);
5 I: ?9 b3 b  n        }/ v% y2 f# R! f
    }
+ x3 [- n, }" I" s4 h    return studentVoList;& E: }; ~6 H, H5 a8 O+ V
}! m; p" N! F) Q0 ]+ @2 {+ l: z& E/ W
</code></pre>
8 z. o3 ?% f: X7 H" P0 k<h5 id="2理论分析-7">2、理论分析</h5>
6 v3 }2 O. A, _% o. T/ C<p>多对多N条记录查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>: K+ O+ Y: X4 O) A1 s1 g+ `
<h4 id="三查询多条记录分页-2">(三)查询多条记录(分页)</h4>* k0 _1 q# N) T( t) N1 u! l7 W7 o
<h5 id="1示例代码-8">1、示例代码</h5>
' R4 B+ l% z% d, z<pre><code class="language-java">public IPage&lt;StudentVo&gt; getStudentPage(IPage&lt;Student&gt; page) {) d$ }8 q9 i9 [
    // 通过主键查询学生信息
& Z, Z$ G8 m+ J; ^8 a: g& x    IPage&lt;StudentVo&gt; studentVoPage = ConvertUtils.convertPage(page(page), StudentVo::new);
8 c* K. l4 Y) [& S    // 批量查询学生ID( E$ f) E$ M3 o
    Set&lt;Integer&gt; stuIds = studentVoPage.getRecords().stream().map(Student::getId).collect(toSet());. b+ O2 Y) |$ c& H/ x" X
    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);
% ?/ G7 N' Z1 g8 R, z* t    // 通过学生ID查询课程分数/ a7 k8 r. g  K8 A9 ~/ F
    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);
/ e. |5 J- H# V0 D6 o. W    // 批量查询课程ID: P* B+ r6 J, o
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());
0 U' v3 ^' Z2 A0 `% T    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {
, Z4 ^: g3 s! }4 i' i2 ]4 q7 P        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);7 {; k5 x) U: Q  K, Q3 m# X
        // 学生ID查询课程ID组) P9 s, L% |: H$ x2 o: S% p
        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));
- E: \0 R5 Q( J
2 G: I9 ^1 Z7 y5 e8 l$ y! j" _0 S. n. C        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));
( c1 b8 u, q9 p0 Y+ O3 I" g        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);* O8 |4 w1 H$ `; l& t0 b
        for (StudentVo studentVo : studentVoPage.getRecords()) {" ~/ s0 |& l( H4 H! P9 a8 ?: W& n7 R
            List&lt;SubjectBo&gt; list = ListUtils.select(subBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));  ?$ u8 a( b7 H+ ]# z
            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));
: w+ K1 G2 U3 ?, k; A& U) B) E: J3 H: ^            studentVo.setSubList(list);
) ]3 l. J# y% N6 m  D; ^3 a& F        }
. z) ~- b! l) R% s3 q: K    }+ _$ `1 D, o5 k" w
    return studentVoPage;
1 z) Z1 [0 l0 n) {  `* W" n/ L- d}
$ k1 {' g5 k( @8 ]</code></pre>
3 J6 `& h# S; j1 M6 v& g# S) ~<h5 id="2理论分析-8">2、理论分析</h5>& m9 a$ N& M9 R' l
<p>多对多N条记录分页查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>! w- E% f% M6 \! s
<h3 id="五总结与拓展">五、总结与拓展</h3>  L9 ]$ H! R% Z0 Y
<h4 id="一总结">(一)总结</h4>) _" S; _7 }& `! J0 }# W' I
<p>通过上述分析,能够用 MybatisPlus 解决多表连接查询中的<code>一对一</code>、<code>一对多</code>、<code>多对多</code>查询。</p>1 e/ t, m6 ^$ l1 C# L1 q
<ul>, x- b- ]3 v$ |% f
<li>上述代码行文紧凑,充分利用 IDE 对 Lambda 表达式的支持,在编译期间完成对代码的检查。</li>
6 H% }& v% K* }<li>业务逻辑清晰,可维护性、可修改性优势明显。</li>
7 i, @- |) u9 \. M! h" l<li>一次查询需要访问至多两次数据库,时间复杂度为<code>o(1)</code>,主键查询或者索引查询,查询效率高。</li>
. d* p% g+ t' P! [; f! G3 `</ul>  T* M+ d5 N' A+ ~: I$ }9 p# u
<h4 id="二拓展">(二)拓展</h4>4 v$ c4 h2 ]+ N& Y1 [- l
<p>MybatisPlus能很好的解决单表查询问题,同时借助在单表查询的封装能很好地解决连接查询问题。</p>8 Y) I9 m  U" s: T8 O1 x
<p>本方案不仅解决了连接查询问题,同时具备如下内容拓展:</p>- e5 I, A, |6 ~" L, C. I
<ul>" A+ U! E) ^4 I' K2 v4 e) M8 m9 J% ]
<li>当数据量较大时,仍然具有稳定的查询效率</li>7 M9 e2 ^& S- F; X* H4 {3 O
</ul>/ H5 l5 V( o$ v% m/ Q3 \
<p>当数据量达到百万级别时,传统的单表通过索引查询已经面临挑战,普通的多表连接查询性能随着数据量的递增呈现指数级下降。</p>
4 Y% n  X' N6 Y! w0 y/ P/ B5 S+ s<p>本方案通过将连接查询转化为主键(索引)查询,查询性能等效于单表查询。</p>+ q  e9 y2 _" H& ?& N
<ul>: y% f! @1 C; B! i0 ^# n+ s/ }* v
<li>与二级缓存配合使用进一步提高查询效率</li>
7 x. z: P  t9 i9 R5 e- |</ul>3 ^' ?, V  i4 M
<p>当所有的查询均转化为以单表为基础的查询后,方能安全的引入二级缓存。二级缓存的单表增删改查操作自适应联动,解决了二级缓存的脏数据问题。</p>
$ T- v! Y9 F0 h7 v! Q3 v<p><img src="https://img2022.cnblogs.com/blog/2731108/202202/2731108-20220212103110902-776916010.jpg" ></p>% d) ~+ W" J# e8 y5 J; r& Z0 y% v8 |
( b# Q( I+ B, R8 D* q. h5 D
回复

使用道具 举报

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

本版积分规则

手机版|飞雪团队

GMT+8, 2024-11-24 03:03 , Processed in 0.075481 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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