飞雪团队

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

MybatisPlus多表连接查询

[复制链接]

7994

主题

8082

帖子

2万

积分

管理员

Rank: 9Rank: 9Rank: 9

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

& b4 q; \+ A1 p; D5 x- S( z' t<h3 id="一序言">一、序言</h3>  b! R7 }( q$ r1 {1 i$ U+ l  W7 [
<h4 id="一背景内容">(一)背景内容</h4>. G4 H. {/ Z; N' v7 W
<p>软件应用技术架构中DAO层最常见的选型组件为MyBatis,熟悉MyBatis的朋友都清楚,曾几何时MyBatis是多么的风光,使用XML文件解决了复杂的数据库访问的难题。时至今日,曾经的屠龙者终成恶龙,以XML文件为基础的数据库访问技术变得臃肿、复杂,维护难度直线上升。</p>
$ h4 S/ t$ S- K3 G4 k<p>MybatisPlus对常见的数据库访问进行了封装,访问数据库大大减少了XML文件的依赖,开发者从臃肿的XML文件中获得了较大限度的解脱。</p>2 ?4 _; `+ ^5 |9 y' a  O
<p>MybatisPlus官方并没有提供多表<code>连接查询</code>的通用解决方案,然而连接查询是相当普遍的需求。解决连接查询有两种需求,一种是继续使用MyBatis提供XML文件解决方式;另一种本文提供的解决方案。</p>
4 X' h/ ~$ G% t- \6 \6 T  w) `; V<p>事实上笔者强烈推荐彻底告别通过XML访问数据库,并不断探索新式更加友好、更加自然的解决方式,现分享最新的MybatisPlus技术的研究成果。</p>& N) T4 }! p( z: I! @
<img src="https://www.altitude.xin/typora/image-20211021114957682.png" >! Z/ _( J. Z) O2 B. u
<h4 id="二场景说明">(二)场景说明</h4>, {, z7 j7 \6 L' A- A, i! u7 a- V; [
<p>为了说明连接查询的关系,这里以学生、课程及其关系为示例。</p>
! V; u3 c9 S# ~$ \& ?6 B<img src="https://www.altitude.xin/typora/image-20211020194255298.png" >
8 c3 b7 S1 K" E& T# i9 N<h4 id="三前期准备">(三)前期准备</h4>+ o6 S5 q5 K6 y! g& X
<p>此部分需要读者掌握以下内容:Lambda 表达式、特别是方法引用;函数式接口;流式运算等等,否则理解起来会有些吃力。</p>5 q) f8 p4 j% W1 j2 _
<img src="https://www.altitude.xin/typora/image-20211021135113431.png" >8 J& s# s+ z0 N- d; R+ M
<p>实体类与 Vo 的映射关系,作者创造性的引入特别构造器,合理利用继承关系,极大的方便了开发者完成实体类向 Vo 的转换。</p>
& m+ S- ^3 \; Q, S<p>空指针异常忽略不处理,借助[Optional]类实现,详情移步[Java8 新特性]查看。</p>
; d7 Z! i3 D( Z8 D" p- Y( }1 g<h3 id="二一对一查询">二、一对一查询</h3>
, B6 _$ x3 u& X" }: n, s: G<p>一对一查询最典型的应用场景是将<code>id</code>替换成<code>name</code>,比如将<code>userId</code>替换成<code>userName</code>。</p>* z( V; Y5 ~" E+ a, y
<h4 id="一查询单条记录">(一)查询单条记录</h4>6 f& I4 v8 f! F2 x
<p>查询单条记录是指返回值仅有一条记录,通常是以唯一索引作为条件的返回查询结果。</p>7 S6 Z6 I0 U  E& O. L
<h5 id="1示例代码">1、示例代码</h5>
) d+ T9 q) v& q+ k<pre><code class="language-java">/**5 j4 b( C0 A3 _
* 查询单个学生信息(一个学生对应一个部门)$ K" X; }4 ?  {- O7 q, z
*/
/ [- ^# s% ~- J( lpublic UserVo getOneUser(Integer userId) {( d  }  l* Z1 v  G
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class)
6 Q5 s* o. ~( s  |+ k        .eq(User::getUserId, userId);
0 }: s8 \, z5 }/ a. e# r    // 先查询用户信息/ t! J7 y2 M5 c0 W7 _
    User user = userMapper.selectOne(wrapper);# Q( k/ J) [' m' o
    // 转化为Vo
3 T+ T" C; V8 z$ d4 w# i8 L    UserVo userVo = Optional.ofNullable(user).map(UserVo::new).orElse(null);
2 E, G9 s6 w, _, T/ e! `0 x    // 从其它表查询信息再封装到Vo
6 U* ]" H5 j1 K* q5 J$ d7 X2 O    Optional.ofNullable(userVo).ifPresent(this::addDetpNameInfo);
( Q* A) s+ f: T$ Q* Y2 H: E    return userVo;
4 F9 z$ ]6 ~8 v, R; b6 ?}
3 e9 F5 D2 k8 e3 R</code></pre>
# P& n! O2 p* I6 F9 S<p>附属表信息补充</p>; K* ~3 \" [/ m9 r. N! X
<pre><code class="language-java">/**
3 c! z2 R  |; {7 |% W$ w * 补充部门名称信息. }: @& S/ g+ j* P' Z
*/
: n5 q, Z- O' L% I6 uprivate void addDetpNameInfo(UserVo userVo) {
( P3 H: p$ W& {    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class)  ?% g3 K. l% p. e. M3 b) }, t3 s
        .eq(Dept::getDeptId, userVo.getDeptId());, W+ j( w$ i3 k; ?: X
    Dept dept = deptMapper.selectOne(wrapper);" ~. p' V$ H6 w  P
    Optional.ofNullable(dept).ifPresent(e -&gt; userVo.setDeptName(e.getDeptName()));
& c7 `" ~! p- j* ~; C}
  K5 n" t  }+ @) i$ Y1 R( F</code></pre>( b5 D2 s% X9 |. K1 \
<h5 id="2理论分析">2、理论分析</h5>2 M: ~2 D- |! ]9 \
<p>查询单个实体共分为两个步骤:根据条件查询主表数据(需处理空指针异常);封装 Vo 并查询附属表数据。</p>  a- Z( l1 ]: y
<p>查询结果(VO)只有一条记录,需要查询两次数据库,时间复杂度为<code>O(1)</code>。</p>
; ~' P& C8 r3 \4 i; c<h4 id="二查询多条记录">(二)查询多条记录</h4>- _" m! l+ @; |0 U$ b3 Z7 o: s
<p>查询多条记录是指查询结果为列表,通常是指以普通索引为条件的查询结果。</p>
/ ~1 L3 f4 i: \7 K1 s<h5 id="1示例代码-1">1、示例代码</h5>6 v1 j* g# }- v& `
<pre><code class="language-java">/**
. N( {' R3 P6 z* N6 t * 批量查询学生信息(一个学生对应一个部门): {5 w2 H' B6 j! P8 s7 E4 T
*/
5 j: F* c. f/ j5 h7 E, E. r9 _public List&lt;UserVo&gt; getUserByList() {
( g( V. @. ?( E* D  i0 D    // 先查询用户信息(表现形式为列表)& y) }3 `. G9 @
    List&lt;User&gt; user = userMapper.selectList(Wrappers.emptyWrapper());
7 C, F9 ~1 ]! C# k8 L3 t    List&lt;UserVo&gt; userVos = user.stream().map(UserVo::new).collect(toList());
* |5 h1 A2 y# `    // 此步骤可以有多个
) n9 M" h( g# A# d    addDeptNameInfo(userVos);: n+ B; I; n/ Q5 l
    return userVos;+ ^& M6 b4 c. F
}3 ]8 }- v  p' @: Y: D
</code></pre>8 D- E7 r  K- s6 ?+ {
<p>附属信息补充</p>
2 c- k, M6 K  r- N! e2 V<pre><code class="language-java">private void addDeptNameInfo(List&lt;UserVo&gt; userVos) {) S* c2 v) x: _- I3 I
    // 提取用户userId,方便批量查询, Y, R" y) e+ q
    Set&lt;Integer&gt; deptIds = userVos.stream().map(User::getDeptId).collect(toSet());0 b4 Q% I1 z( r
    // 根据deptId查询deptName(查询前,先做非空判断)# M' J  |( T' n, f' e& M3 M" d; _
    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
; a" C8 v& I" N/ a; c* L  y    // 构造映射关系,方便匹配deptId与deptName
- \: a7 j& }$ `* X5 {8 Y    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));5 k$ i3 p6 j5 p, F$ K/ Z- _
    // 封装Vo,并添加到集合中(关键内容)
/ t! y. C/ B( d# r8 k    userVos.forEach(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));4 V3 K" |1 I5 C& ~# }2 [
}; e3 C- F  {# x/ ?
</code></pre>7 Z. `: f* @& |* U* q6 ~1 n- c
<h5 id="2理论分析-1">2、理论分析</h5>
- f+ t9 A; f7 t# R  E4 A: x; m<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>
( ^, \! \4 n$ X<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>! }. ~% l; T6 t6 R" |. {. u+ {
<h4 id="三查询多条记录分页">(三)查询多条记录(分页)</h4>4 g- M7 }3 W# d7 r1 x" ~4 I
<p>分页查询实体的思路与查询列表的思路相似,额外多处一步分页泛型转换。</p>
. x$ E7 e+ M- l# z0 V4 g! @& \<h5 id="1示例代码-2">1、示例代码</h5>
1 M2 ~( ]! n0 {" q8 h" c<pre><code class="language-java">/**: ], e$ h; K0 N6 _4 @- b% n
* 分页查询学生信息(一个学生对应一个部门)
6 k5 Q3 r6 C6 c: o/ i */2 J& V9 ]8 Q7 L4 \' O' G
public IPage&lt;UserVo&gt; getUserByPage(Page&lt;User&gt; page) {+ |4 v+ s. l9 Z3 b
    // 先查询用户信息
5 u2 Q5 B  ?. I8 a) z    IPage&lt;User&gt; xUserPage = userMapper.selectPage(page, Wrappers.emptyWrapper());
9 W. `: r% T6 p2 F  X    // 初始化Vo: d6 U8 F1 }- ?( o7 Z' r3 j9 L' u
    IPage&lt;UserVo&gt; userVoPage = xUserPage.convert(UserVo::new);# B% T" ?0 p! e
    if (userVoPage.getRecords().size() &gt; 0) {
+ m' `% r, j0 Q4 E0 a" ?/ f        addDeptNameInfo(userVoPage);3 S6 C8 H; ?3 _3 E- |" f( D3 m
    }; r1 R7 n; d" `4 n7 w! F0 D
    return userVoPage;( B* Q! e- u5 ^2 h# m& p& }& I
}
/ `! L( Q& e- {</code></pre>9 c3 T3 `1 W! E$ ~6 Z* q6 w5 n7 b, F6 G
<p>查询补充信息</p>6 Z! s! k9 N( V$ `) [$ o8 a
<pre><code class="language-java">private void addDeptNameInfo(IPage&lt;UserVo&gt; userVoPage) {
  \0 J% E- Y# [9 H+ V, \  K    // 提取用户userId,方便批量查询5 S: d1 ~6 s+ b$ y$ P  S; t2 j
    Set&lt;Integer&gt; deptIds = userVoPage.getRecords().stream().map(User::getDeptId).collect(toSet());$ f. [* P3 o2 z6 \
    // 根据deptId查询deptName" y. z- C; G8 [; }# f
    List&lt;Dept&gt; dept = deptMapper.selectList(Wrappers.lambdaQuery(Dept.class).in(Dept::getDeptId, deptIds));
. i. t- A. Z; M    // 构造映射关系,方便匹配deptId与deptName) d; t6 u1 \3 F( ^) P; R9 f
    Map&lt;Integer, String&gt; hashMap = dept.stream().collect(toMap(Dept::getDeptId, Dept::getDeptName));, f$ E+ m& p# p  H$ H3 W
    // 将查询补充的信息添加到Vo中3 P& ]: Z+ T0 z% n/ @
    userVoPage.convert(e -&gt; e.setDeptName(hashMap.get(e.getDeptId())));
( U5 O1 r/ W1 T% ~* t- U( c- J/ Y3 M}
  l( N- k: b* H0 J9 L! O</code></pre>% C7 {8 Z2 g" j1 T( J2 f% r& v" Y
<p><code>IPage</code>接口中<code>convert</code>方法,能够实现在原实例上修改。</p>0 h9 [! P* I! h: ~
<h5 id="2理论分析-2">2、理论分析</h5>
7 f7 C# d& J( S1 Y<p>先查询包含<code>id</code>的列表记录,从结果集中析出<code>id</code>并转化成批查询语句再访问数据库,从第二次调用结果集中解析出<code>name</code>。</p>8 p9 W. X1 |# y
<p>查询结果(VO)有多条记录,但仅调用两次数据库,时间复杂度为<code>O(1)</code>。</p>' j6 n' l" V0 P5 Z3 N
<h3 id="三一对多查询">三、一对多查询</h3>
# j. m3 O+ z4 H% a2 Q<p>一对多查询最常见的场景是查询部门所包含的学生信息,由于一个部门对应多个学生,每个学生对应一个部门,因此称为一对多查询。</p>0 k6 S! [( ?4 u! U; ~8 i6 H
<h4 id="一查询单条记录-1">(一)查询单条记录</h4>
$ `' ^1 V0 L5 t<h5 id="1示例代码-3">1、示例代码</h5>
4 o2 Z3 m- s/ j8 w5 A) `<pre><code class="language-java">/**
: {  P- y7 n" [8 b  C * 查询单个部门(其中一个部门有多个用户): S, `  Z) G6 h1 r( J  B) P7 H
*/0 q6 N6 h% o/ Z9 Z. u3 {+ N
public DeptVo getOneDept(Integer deptId) {
% X; I  F6 J- c, R2 `3 ]" J    // 查询部门基础信息
* ~; k2 z  X/ I( A+ w6 h5 ?$ {1 i% ?    LambdaQueryWrapper&lt;Dept&gt; wrapper = Wrappers.lambdaQuery(Dept.class).eq(Dept::getDeptId, deptId);
+ k- M7 y# h( m5 x5 l& Y    DeptVo deptVo = Optional.ofNullable(deptMapper.selectOne(wrapper)).map(DeptVo::new).orElse(null);+ q7 V. m2 i0 E4 c
    Optional.ofNullable(deptVo).ifPresent(this::addUserInfo);
# F9 O4 {( O. C    return deptVo;' J% o1 B8 s# Z' R
}
4 z5 w5 u( u( {! f" U3 x: K9 L</code></pre>4 a8 C- x) w& z  y/ `* W6 D" O' C
<p>补充附加信息</p>
7 K' d9 x$ @3 T% q- F$ y; [' I<pre><code class="language-java">private void addUserInfo(DeptVo deptVo) {* T$ p8 u9 \+ T! ]. u7 h- S' A- w
    // 根据部门deptId查询学生列表7 W( B6 n# c4 J, u8 v+ _+ Z
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).eq(User::getDeptId, deptVo.getDeptId());7 T" t! F0 v5 [- A- h
    List&lt;User&gt; users = userMapper.selectList(wrapper);
  w1 M* J' U9 Y6 W( z    deptVo.setUsers(users);" L; o  B- A# s; w5 z+ n6 J
}7 G4 b) k4 m3 \4 O1 B& ]
</code></pre>
6 _) B) h8 y' e* B- v<h5 id="2理论分析-3">2、理论分析</h5>
- @5 M6 O# b1 \<p>整个过程共分为两个阶段:通过部门表中主键查询指定部门信息,通过学生表中部门ID外键查询学生信息,将结果合并,形成返回值(Vo)。</p>
' H5 d. h* I; b: S( }+ \' r<p>一对多查询单条记录整个过程至多需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
5 t( z5 A/ Y3 B4 R  |3 T8 K& T; t<h4 id="二查询多条记录-1">(二)查询多条记录</h4>2 }; p! @: E+ o
<h5 id="1示例代码-4">1、示例代码</h5>" U" z2 o" b! f: ?; w
<pre><code class="language-java">/**/ X' ~+ s* N+ T' i) X
* 查询多个部门(其中一个部门有多个用户), Q; Z* |9 x: B7 y2 O8 `
*/
9 D5 O- l* I" p% t3 Kpublic List&lt;DeptVo&gt; getDeptByList() {/ w4 n% x& |; M. u2 S. N
    // 按条件查询部门信息
  q- n7 h. ?8 i: p7 ?3 g    List&lt;Dept&gt; deptList = deptMapper.selectList(Wrappers.emptyWrapper());
" v4 o& w2 ~8 T    List&lt;DeptVo&gt; deptVos = deptList.stream().map(DeptVo::new).collect(toList());
2 q5 h/ I& c% v) q3 l# X* f    if (deptVos.size() &gt; 0) {
4 h  ]! I! m5 G: Q, B        addUserInfo(deptVos);+ f* v/ C/ f8 u/ }+ B+ h
    }
% h9 ~7 x. f6 Q3 u; B+ A7 c    return deptVos;5 {6 K& g4 y8 C) M$ |
}; B0 y1 P3 W1 f6 \* G
</code></pre>
# j6 x' O" v7 I9 _% d<p>补充附加信息</p>
7 ^3 x4 N' h, w' f+ L<pre><code class="language-java">private void addUserInfo(List&lt;DeptVo&gt; deptVos) {
# w# t2 z. @$ N+ P0 P    // 准备deptId方便批量查询用户信息
4 w  O: I. q: S$ k    Set&lt;Integer&gt; deptIds = deptVos.stream().map(Dept::getDeptId).collect(toSet());
+ n6 ~* D/ H% `* v- E9 {" I% j    // 用批量deptId查询用户信息5 K9 G- [, J" {: ~. A; j
    List&lt;User&gt; users = userMapper.selectList(Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds));
; C* `5 u1 j  W2 G5 [0 [    // 重点:将用户按照deptId分组
! m# D4 l+ T+ z- I$ A8 b    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));3 T6 L. |  }4 B7 A0 h1 m' k8 p: i
    // 合并结果,构造Vo,添加集合列表
2 D+ q$ j3 a% W4 P: \! U0 y    deptVos.forEach(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));9 K+ Z- K) O; k9 {$ ~  ]  d
}: a8 g0 L8 R* A, {. A7 o  U' C9 q' E
</code></pre>
; d  Y* I- `& k3 a<h5 id="2理论分析-4">2、理论分析</h5>, Q/ B# T6 W$ D$ @% _9 D  u+ f
<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
/ s$ Z+ G4 D1 j! K" z! m* a  F<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>( f% f2 b5 ]+ K& j8 w; R
<h4 id="三查询多条记录分页-1">(三)查询多条记录(分页)</h4>
# z- v3 a4 L2 ~' I6 D# `0 p<h5 id="1示例代码-5">1、示例代码</h5>
( Z$ V+ N* J  I<pre><code class="language-java">/**
% f3 x% ^/ b# P; c% V * 分页查询部门信息(其中一个部门有多个用户)6 W. b" p6 F& r, l' C: n
*/, M9 s. R; Z2 S
public IPage&lt;DeptVo&gt; getDeptByPage(Page&lt;Dept&gt; page) {3 e5 L1 Y- z& \" o5 ~- Z
    // 按条件查询部门信息/ [; F; c5 B& K$ O) L/ a8 Z! C
    IPage&lt;Dept&gt; xDeptPage = deptMapper.selectPage(page, Wrappers.emptyWrapper());
6 r/ g$ F  m3 C' O+ }    IPage&lt;DeptVo&gt; deptVoPage = xDeptPage.convert(DeptVo::new);, O$ W0 r, A- T. q
    if (deptVoPage.getRecords().size() &gt; 0) {( s6 U+ `# X+ `. G1 J1 j/ A8 |
        addUserInfo(deptVoPage);
* u0 c1 H' a0 N  Y    }
/ A: @5 \; Z" M( H3 A    return deptVoPage;# [9 ]# ]5 C. o; E
}
, v# [9 y$ c1 A</code></pre>* D* w) p" S4 R" }0 K
<p>查询补充信息</p>/ q0 Z* g3 ?2 Z) ~
<pre><code class="language-java">private void addUserInfo(IPage&lt;DeptVo&gt; deptVoPage) {
+ O. ?# C; ]( _5 b& ]    // 准备deptId方便批量查询用户信息% @7 ~6 Y' o( Z; J& @# \9 t/ |
    Set&lt;Integer&gt; deptIds = deptVoPage.getRecords().stream().map(Dept::getDeptId).collect(toSet());( `$ I) a7 ^, Z$ w
    LambdaQueryWrapper&lt;User&gt; wrapper = Wrappers.lambdaQuery(User.class).in(User::getDeptId, deptIds);! V& F% K+ |7 V/ b2 @& H6 a, E
    // 用批量deptId查询用户信息% O) A7 r* m3 O7 n% t# G  x% r- {$ C7 I6 d
    List&lt;User&gt; users = userMapper.selectList(wrapper);
: |9 |6 o' m( a/ I1 E! c% z/ [    // 重点:将用户按照deptId分组
) k# j. N/ F! h7 @    Map&lt;Integer, List&lt;User&gt;&gt; hashMap = users.stream().collect(groupingBy(User::getDeptId));
* B4 W- b5 L6 ^/ e; i    // 合并结果,构造Vo,添加集合列表
# Y' l7 ^7 |) h  A: V+ @4 ]1 d    deptVoPage.convert(e -&gt; e.setUsers(hashMap.get(e.getDeptId())));8 v( K0 H6 E" Y
}! v* Y: L  K% I- f* J
</code></pre>) ]( `- B1 R: U& V' ~" O
<h5 id="2理论分析-5">2、理论分析</h5>
  ?& T( B( n! N( o0 d/ ?: s0 t<p>整个过程共分为三个阶段:通过普通索引从部门表中查询若干条记录;将部门ID转化为批查询从学生表中查询学生记录;将学生记录以部门ID为单位进行分组,合并结果,转化为Vo。</p>
5 Z$ Z0 Z) h2 [" P9 @<p>一对多查询多条记录需要调用2次数据库查询,查询次数为常数,查询时间复杂度为<code>O(1)</code>。</p>
4 N3 h! W8 b# K1 K* r9 O<h3 id="四多对多查询">四、多对多查询</h3>
3 |2 y9 H8 m. \* m& T' ^5 q6 p1 z4 d1 d<p>MybatisPlus 实现多对多查询是一件极富挑战性的任务,也是连接查询中最困难的部分。</p>
; S; H' D0 a( D# x<p>以空间置换时间,借助于流式运算,解决多对多查询难题。</p>& A" o& Y5 Q% H0 N1 t* F
<p>多对多查询相对于一对多查询,增加了流式分组运算、批量 HashMap 取值等内容。</p>1 n9 L' }  @" U1 b2 T
<img src="https://www.altitude.xin/typora/image-20211024115903848.png" >
' b: ^# M) {) F! d<h4 id="一查询单条记录-2">(一)查询单条记录</h4>
1 r7 _2 T' k9 V<p>查询单条记录一般是指通过两个查询条件查询出一条匹配表中的记录。</p>) x1 K1 D7 c7 [: g1 M% p4 t
<h5 id="1示例代码-6">1、示例代码</h5>
+ G2 `/ S8 c& u+ Z0 Q( ^3 W% X<pre><code class="language-java">public StudentVo getStudent(Integer stuId) {
2 H3 U; _- _% _( l6 J    // 通过主键查询学生信息
( }. a- }5 t7 t" i/ r2 K2 V    StudentVo studentVo = ConvertUtils.convertObj(getById(stuId), StudentVo::new);
* f# h  ^% C9 w. ~2 V" A* ~5 v6 F  p    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).eq(StuSubRelation::getStuId, stuId);( A1 H! M( `: I1 T* }; d
    // 查询匹配关系
( {' x8 i- o  u/ ~" V  n0 Z# S1 I6 k3 v$ V    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);' Q* E: u) t7 c" p! b6 W
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());. B( D9 E9 }- K" p; S% n; x& t5 b
    if (studentVo != null &amp;&amp; subIds.size() &gt; 0) {
2 l  E, e) Q: s, ?0 Z        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));( X# ~. ]9 O# }* M/ `7 }' X
        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);
5 ~- H$ M& x8 r9 o9 \        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);8 [/ S* c/ U* ~7 ~
        subBoList.forEach(e -&gt; e.setScore(table.get(stuId, e.getId())));
$ q  D/ D) s  r1 K+ U! V# }0 t        studentVo.setSubList(subBoList);
! m1 o2 \9 f3 F* B/ E9 g% o    }, ]+ G/ _- J# L8 t
    return studentVo;# }% P& R0 q: `, K
}
$ h6 S& b. A1 F! v</code></pre>
: t5 ^7 Y+ Q$ D* P/ }! I<h5 id="2理论分析-6">2、理论分析</h5>$ E3 a+ B  _5 {- [3 v) X9 z
<p>多对多单条记录查询最多访问数据库3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>3 D9 [9 B; X( A8 g
<h4 id="二查询多条记录-2">(二)查询多条记录</h4>
3 _: @& Q1 M3 N4 X' D6 ~- z<h5 id="1示例代码-7">1、示例代码</h5>' L$ l2 i% V. @7 L  Q3 m
<pre><code class="language-java">public List&lt;StudentVo&gt; getStudentList() {
/ |6 ]: d& c: o( J0 U) y: P" O+ }+ p    // 通过主键查询学生信息
) k* H  c$ j( ~$ L    List&lt;StudentVo&gt; studentVoList = ConvertUtils.convertList(list(), StudentVo::new);
5 {( g( F$ s7 Y# n) D    // 批量查询学生ID/ m' G; k/ Q+ Z: F
    Set&lt;Integer&gt; stuIds = studentVoList.stream().map(Student::getId).collect(toSet());& B4 _( ]6 v9 {7 J4 p
    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);
/ m& e3 v$ e0 m    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);
0 U6 N+ {8 T# a5 K1 \! q; ]    // 批量查询课程ID2 o3 u4 k( q5 X8 q- h) ~
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());. |1 n3 Z4 e3 J* d  r' q5 h0 [
    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {9 M( B( b: X" E6 H0 t! ]. v
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);( e: u( c$ Z- g6 h3 L
        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));4 E* V. D# d! o+ n  O2 s
        List&lt;SubjectBo&gt; subjectBoList = ConvertUtils.convertList(subList, SubjectBo::new);
# T& S. x% I* i4 z        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));4 T, A9 J" h5 p" p
        for (StudentVo studentVo : studentVoList) {
- \% v- I& l4 U) z2 n- l: G            // 获取课程列表% N8 t! b  |3 v4 \5 K) m+ |
            List&lt;SubjectBo&gt; list = ListUtils.select(subjectBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));; t1 h7 i( K. V% T% v' z- |
            // 填充分数1 I$ @$ l4 `  v. l$ n. _* T
            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));
+ M( ]* G! z: l. J  f            studentVo.setSubList(list);
, D$ ~+ t0 J% q$ n7 J' D3 p        }! b- k7 u! |+ o
    }
3 W& X1 S9 `3 M' K" J4 k: C! [    return studentVoList;2 p; b) ~  w5 f( [! x' p
}
( L1 x! A8 K5 w1 _</code></pre>3 w/ r9 N% `6 n2 t7 `& a
<h5 id="2理论分析-7">2、理论分析</h5>1 b9 p; J" g5 W, ^6 S
<p>多对多N条记录查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>9 q3 e% A( t& n
<h4 id="三查询多条记录分页-2">(三)查询多条记录(分页)</h4>
, G0 L3 N* l0 {* L) y<h5 id="1示例代码-8">1、示例代码</h5>
; G) ^2 @* X1 c( X<pre><code class="language-java">public IPage&lt;StudentVo&gt; getStudentPage(IPage&lt;Student&gt; page) {
+ A: e$ M7 j& v7 K    // 通过主键查询学生信息
( }9 c: O' o7 }9 B: ?    IPage&lt;StudentVo&gt; studentVoPage = ConvertUtils.convertPage(page(page), StudentVo::new);
4 ]/ R8 S' [' h- [8 a/ A( b- Q    // 批量查询学生ID
" J6 f) n  a+ X0 r    Set&lt;Integer&gt; stuIds = studentVoPage.getRecords().stream().map(Student::getId).collect(toSet());
- K& T0 Q# h0 T) ]    LambdaQueryWrapper&lt;StuSubRelation&gt; wrapper = Wrappers.lambdaQuery(StuSubRelation.class).in(StuSubRelation::getStuId, stuIds);& w+ V2 I& Q& y0 ?: q8 B
    // 通过学生ID查询课程分数
" f, u" k. E% ~  G, |! _# D: e    List&lt;StuSubRelation&gt; stuSubRelations = stuSubRelationMapper.selectList(wrapper);2 m' [* a7 |6 ^& M8 ~
    // 批量查询课程ID# h# d* S. ~, [1 Q4 ^
    Set&lt;Integer&gt; subIds = stuSubRelations.stream().map(StuSubRelation::getSubId).collect(toSet());
5 E) _! v0 r; b0 A1 n    if (stuIds.size() &gt; 0 &amp;&amp; subIds.size() &gt; 0) {: ?0 l9 _" P3 f" J  N# a9 J
        HashBasedTable&lt;Integer, Integer, Integer&gt; table = getHashBasedTable(stuSubRelations);
+ R# ^4 q# w# ?" F- z        // 学生ID查询课程ID组
) Q" d( B/ y0 N3 J        Map&lt;Integer, List&lt;Integer&gt;&gt; map = stuSubRelations.stream().collect(groupingBy(StuSubRelation::getStuId, mapping(StuSubRelation::getSubId, toList())));: E2 }& y+ T7 @; w

$ [$ _, _* |, b: q! Z6 b        List&lt;Subject&gt; subList = subjectMapper.selectList(Wrappers.lambdaQuery(Subject.class).in(Subject::getId, subIds));$ O! L+ z; N0 G9 C: e( B9 g
        List&lt;SubjectBo&gt; subBoList = ConvertUtils.convertList(subList, SubjectBo::new);* J; u/ Q4 m) ~5 ?# l2 Q% B
        for (StudentVo studentVo : studentVoPage.getRecords()) {
( B$ f. G7 Y% i4 d- w            List&lt;SubjectBo&gt; list = ListUtils.select(subBoList, e -&gt; emptyIfNull(map.get(studentVo.getId())).contains(e.getId()));
/ W( I6 X; j0 }6 f, q            list.forEach(e -&gt; e.setScore(table.get(studentVo.getId(), e.getId())));- S% x8 ~' ~/ [% B6 K3 a
            studentVo.setSubList(list);
+ a* y8 d* T5 N" F* D        }7 K, s! Q) n( ~& L# [
    }. a! ~  ?: y& o7 r  {2 N* J
    return studentVoPage;
" L; g8 p/ w* ~}
" I9 O- S/ n; |: c9 p) q  o2 z</code></pre>
# Q; n% X! r1 {<h5 id="2理论分析-8">2、理论分析</h5>( n# p6 m) i3 o6 D
<p>多对多N条记录分页查询由于使用了批查询,因此最多访问数据库也是3次,先查询学生信息,然后查询学生与课程匹配信息,最后查询课程分数信息,查询时间复杂度为<code>O(1)</code>。</p>
  h2 }7 j; f3 e! M. n' p0 M8 i<h3 id="五总结与拓展">五、总结与拓展</h3>! n0 E) Z  ?/ N8 s
<h4 id="一总结">(一)总结</h4>
( `2 [9 j; O2 L<p>通过上述分析,能够用 MybatisPlus 解决多表连接查询中的<code>一对一</code>、<code>一对多</code>、<code>多对多</code>查询。</p>
" M6 [5 O* M. Y2 F8 r1 }<ul>
7 h  G" f, A2 W! X  ?) b0 k/ \* S<li>上述代码行文紧凑,充分利用 IDE 对 Lambda 表达式的支持,在编译期间完成对代码的检查。</li>
) e+ B( P& d5 O5 u9 Y, S3 ~/ z<li>业务逻辑清晰,可维护性、可修改性优势明显。</li>; ~/ \* s, o! p1 Y
<li>一次查询需要访问至多两次数据库,时间复杂度为<code>o(1)</code>,主键查询或者索引查询,查询效率高。</li>
" Y) v3 _( ~$ I; _: H* [. R5 x</ul>
* f- f) z: J, s- o2 X- [0 _, i<h4 id="二拓展">(二)拓展</h4>( H* C; K: s, N: J( C
<p>MybatisPlus能很好的解决单表查询问题,同时借助在单表查询的封装能很好地解决连接查询问题。</p>
5 X/ d) \' c" d' I<p>本方案不仅解决了连接查询问题,同时具备如下内容拓展:</p>
7 Z+ B) E) M* g" I<ul>
  w( Z% a1 J- L! F% ~2 q<li>当数据量较大时,仍然具有稳定的查询效率</li>
" ^- Y- w* a- f% F. t, I! V" B; g</ul>, W- s7 {6 Z0 o0 s% E
<p>当数据量达到百万级别时,传统的单表通过索引查询已经面临挑战,普通的多表连接查询性能随着数据量的递增呈现指数级下降。</p>
( u2 }/ i2 A7 K+ M<p>本方案通过将连接查询转化为主键(索引)查询,查询性能等效于单表查询。</p>. f. s" C& V0 N' G3 T5 }7 a& J9 `: |. E
<ul>
- I, Y+ ~3 g& J- F4 ^: \' i. a. m<li>与二级缓存配合使用进一步提高查询效率</li>
5 `- v. i# i1 M</ul>
) t/ J8 i' e/ M/ l<p>当所有的查询均转化为以单表为基础的查询后,方能安全的引入二级缓存。二级缓存的单表增删改查操作自适应联动,解决了二级缓存的脏数据问题。</p>
% Z( F: y+ W! d7 B7 ?' {- d# }% T<p><img src="https://img2022.cnblogs.com/blog/2731108/202202/2731108-20220212103110902-776916010.jpg" ></p>4 Z+ `- K5 L, ~- b# Q' C7 r: a
$ ~1 {. A( [' V9 Z0 @. w$ N/ i
回复

使用道具 举报

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

本版积分规则

手机版|飞雪团队

GMT+8, 2025-11-30 09:46 , Processed in 0.064896 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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