飞雪团队

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

MybatisPlus多表连接查询

[复制链接]

7995

主题

8083

帖子

2万

积分

管理员

Rank: 9Rank: 9Rank: 9

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

1 g6 m: [$ h, k* L2 w
回复

使用道具 举报

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

本版积分规则

手机版|飞雪团队

GMT+8, 2025-12-1 00:12 , Processed in 0.066360 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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