From 4e7bfd68c123a8bf3c5366e2551490b9092cdf77 Mon Sep 17 00:00:00 2001 From: yzqdev Date: Sat, 21 May 2022 05:47:37 +0800 Subject: [PATCH] =?UTF-8?q?`MangToMang`=E4=BF=AE=E6=AD=A3=E4=B8=BA`ManyToM?= =?UTF-8?q?any`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system-design/framework/spring/spring-common-annotations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/system-design/framework/spring/spring-common-annotations.md b/docs/system-design/framework/spring/spring-common-annotations.md index e4ef13f4..5d1f59b3 100644 --- a/docs/system-design/framework/spring/spring-common-annotations.md +++ b/docs/system-design/framework/spring/spring-common-annotations.md @@ -791,7 +791,7 @@ public interface UserRepository extends JpaRepository { - `@OneToOne` 声明一对一关系 - `@OneToMany` 声明一对多关系 - `@ManyToOne` 声明多对一关系 -- `@MangToMang` 声明多对多关系 +- `@ManyToMany` 声明多对多关系 更多关于 Spring Boot JPA 的文章请看我的这篇文章:[一文搞懂如何在 Spring Boot 正确中使用 JPA](https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=2247485689&idx=1&sn=061b32c2222869932be5631fb0bb5260&chksm=cea24732f9d5ce24a356fb3675170e7843addbfcc79ee267cfdb45c83fc7e90babf0f20d22e1&token=292197051&lang=zh_CN#rd) 。