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