diff --git a/README.md b/README.md
index 82d959c8..a91d5c1b 100644
--- a/README.md
+++ b/README.md
@@ -147,13 +147,16 @@ cors:
## 模块结构
-| 模块名称 | 模块作用 |
-| ------------------------ | ------------------------------------------ |
-| continew-starter-core | 核心模块(包含跨域、线程池自动配置) |
-| continew-starter-api-doc | API 文档模块(包含 Knife4j 自动配置) |
-| continew-starter-json | JSON 模块(包含 Jackson 自动配置) |
-| continew-starter-cache | 缓存模块(包含 Redisson 自动配置) |
-| continew-starter-data | 数据访问模块(包含 MyBatis Plus 自动配置) |
+| 模块名称 | 模块作用 |
+| -------------------------- | ------------------------------------------- |
+| continew-starter-core | 核心模块(包含跨域、线程池自动配置) |
+| continew-starter-json | JSON 模块(包含 Jackson 自动配置) |
+| continew-starter-api-doc | API 文档模块(包含 Knife4j 自动配置) |
+| continew-starter-captcha | 验证码模块(包含图形验证码自动配置) |
+| continew-starter-cache | 缓存模块(包含 Redisson 自动配置) |
+| continew-starter-data | 数据访问模块(包含 MyBatis Plus 自动配置) |
+| continew-starter-auth | 认证模块(包含 SaToken、JustAuth 自动配置) |
+| continew-starter-messaging | 消息模块(包含 SMS4J、邮箱自动配置) |
## 贡献代码
@@ -186,6 +189,26 @@ ContiNew Starter 的分支目前分为下个大版本的开发分支和上个大
> 2. 在提交代码前,请按照 [Angular 提交规范](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular) 编写 commit 的 message(建议在 IntelliJ IDEA 中下载并安装 Git Commit Template 插件,以便按照规范进行 commit)
> 3. 提交代码之前,请关闭所有代码窗口,执行 mvn compile 命令,编译通过后,不要再打开查看任何代码窗口,直接提交即可
+## 鸣谢
+
+### 鸣谢
+
+感谢参与贡献的每一位小伙伴🥰
+
+
+
+
+
+### 特别鸣谢
+
+- 感谢 JetBrains 提供的 非商业开源软件开发授权
+- 感谢 MyBatis Plus、Sa-Token 、Knife4j、Hutool 等国产开源组件作者为国内开源世界作出的贡献
+- 感谢 ELADMIN、RuoYi-Vue-Plus、Dante-Engine,致敬各位作者为开源脚手架领域作出的贡献
+ - e.g. 起始于 ELADMIN 项目开源的 QueryHelper 组件
+ - e.g. 使用 RuoYi-Vue-Plus 项目封装的 SaToken 相关认证鉴权配置
+ - e.g. 使用 Dante-Engine 项目封装的 Redisson 相关配置
+- 感谢项目使用或未使用到的每一款开源组件,致敬各位开源先驱 :fire:
+
## License
- 遵循 LGPL-3.0 开源许可协议
diff --git a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/AsyncAutoConfiguration.java b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/AsyncAutoConfiguration.java
index 14f23cfe..05b6fef2 100644
--- a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/AsyncAutoConfiguration.java
+++ b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/AsyncAutoConfiguration.java
@@ -35,7 +35,7 @@ import java.util.concurrent.ScheduledExecutorService;
* 异步任务自动配置
*
* @author Charles7c
- * @author Lion Li(RuoYi-Vue-Plus)
+ * @author Lion Li(RuoYi-Vue-Plus)
* @since 1.0.0
*/
@Slf4j
diff --git a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolAutoConfiguration.java b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolAutoConfiguration.java
index d0ac4c64..e8b9e92f 100644
--- a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolAutoConfiguration.java
+++ b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolAutoConfiguration.java
@@ -36,7 +36,7 @@ import java.util.concurrent.ThreadPoolExecutor;
* 线程池自动配置
*
* @author Charles7c
- * @author Lion Li(RuoYi-Vue-Plus)
+ * @author Lion Li(RuoYi-Vue-Plus)
* @since 1.0.0
*/
@Slf4j
diff --git a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolProperties.java b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolProperties.java
index 56a2404f..62e8037f 100644
--- a/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolProperties.java
+++ b/continew-starter-core/src/main/java/top/charles7c/continew/starter/core/autoconfigure/threadpool/ThreadPoolProperties.java
@@ -23,7 +23,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
* 线程池配置属性
*
* @author Charles7c
- * @author Lion Li(RuoYi-Vue-Plus)
+ * @author Lion Li(RuoYi-Vue-Plus)
* @since 1.0.0
*/
@Data