diff --git a/.image/模块依赖图.png b/.image/模块依赖图.png
deleted file mode 100644
index 70ef06a9..00000000
Binary files a/.image/模块依赖图.png and /dev/null differ
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e0bac8ec..64e33606 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,34 @@
-## [v1.1.1](https://github.com/Charles7c/continew-starter/compare/v1.1.0...v1.1.1) (2024-01-11)
+## [v1.2.0](https://github.com/Charles7c/continew-starter/compare/v1.1.1...v1.2.0) (2024-01-20)
+
+### ✨ 新特性
+
+* 【extension/crud】新增 Easy Excel 枚举接口转换器 ([8936268](https://github.com/Charles7c/continew-starter/commit/8936268038b4f554d00f738a2311b560bda205d8))
+* 【extension/crud】适配 Crane4j 数据填充组件 ([5d26f34](https://github.com/Charles7c/continew-starter/commit/5d26f343da7c467905fd08dfd06aaa2c50e8bcce))
+* 【extension/crud】新增钩子方法,用于增强增、删、改方法 ([43dba72](https://github.com/Charles7c/continew-starter/commit/43dba72cee9cb148a53ec2df23b0ac2854a0a42d))
+* 【extension/crud】新增 IService 通用业务接口 ([926c92c](https://github.com/Charles7c/continew-starter/commit/926c92cc321e5da9279400741986f71173a3eda3))
+* 【extension/crud】新增启用注解,便于灵活控制启用/关闭 CRUD REST API、全局异常处理器增强 ([9398d68](https://github.com/Charles7c/continew-starter/commit/9398d686bbd3b87a2a82e273a5bda37d05ca6f30))
+* 【cache/springcache】新增 Spring Cache 自动配置 ([e090083](https://github.com/Charles7c/continew-starter/commit/e090083ba26342aaf8378206949d6350f4f1444f))
+* 【cache/jetcache】新增 JetCache 自动配置 ([156b02b](https://github.com/Charles7c/continew-starter/commit/156b02b3d77fa9f0476c23182d35df030a3ea66a))
+* 【web】新增 Web 模块,从核心模块拆分 Web 相关自动配置 ([9cf76fe](https://github.com/Charles7c/continew-starter/commit/9cf76fe61f2368244a501c1c036c0a55502f5c0a))
+
+### 💎 功能优化
+
+- 新增部分 Maven 插件版本锁定 ([be14bca](https://github.com/Charles7c/continew-starter/commit/be14bca2ca6ba5a808f7feebaafcf9356d338643))
+- 移除部分无用 Maven 配置 ([6d9e8b4](https://github.com/Charles7c/continew-starter/commit/6d9e8b43ebe8d891ab459a2c2f21e06936abdc1d))
+- 全局统一 Hutool 版本,精简各模块 Hutool 依赖 ([Gitee PR#6](https://gitee.com/Charles7c/continew-starter/pulls/6))
+- 调整部分类的所在包 ([b4b40b4](https://github.com/Charles7c/continew-starter/commit/b4b40b4cb929824e44bc7ad8737cbe73b283b34d))
+
+### 🐛 问题修复
+
+- 【log/httptrace-pro】修复隐藏接口仍然被记录请求日志的问题 ([f3ad2c4](https://github.com/Charles7c/continew-starter/commit/f3ad2c48a9511ef611d414596539e838adef8e45))
+
+### 💥 破坏性变更
+
+- 【extension/crud】移动全局异常处理器到 Web 模块 ([ec0ebd0](https://github.com/Charles7c/continew-starter/commit/ec0ebd00e49a2e67daa97d4a4f531f49acd5d89d))
+
+## [v1.1.2](https://github.com/Charles7c/continew-starter/compare/v1.1.0...v1.1.2) (2024-01-11)
+
+> 由于发布 `v1.1.1` 至 Maven 仓库时出现异常,且按其规则无法修改错误数据,改为递增版本号为 `v1.1.2` 并发布。
### ✨ 新特性
diff --git a/README.md b/README.md
index 1c0302c9..1268b00f 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
-
+
@@ -101,10 +101,10 @@ ContiNew Starter 就是将脚手架项目中的通用基础配置进行了封装
```xml
-
+
top.charles7c.continew
- continew-starter-core
+ continew-starter-web
```
@@ -115,7 +115,7 @@ e.g. 跨域配置
```yaml
--- ### 跨域配置
-continew-starter:
+continew-starter.web:
cors:
enabled: true
# 配置允许跨域的域名
@@ -149,7 +149,7 @@ continew-starter:
```
-2.将 ContiNew Starter 版本改为对应快照版本,例如:1.1.0-SNAPSHOT
+2.将 ContiNew Starter 版本改为对应快照版本,例如:1.3.0-SNAPSHOT
@@ -157,9 +157,10 @@ continew-starter:
| 模块名称 | 模块说明 | 依赖版本 |
| ---------------------------------- | --------------------------------------------------- | ------------------------------------------------------------ |
-| continew-starter-core | 核心模块:包含跨域、线程池等自动配置 | Spring Boot:3.1.7
Undertow:2.3.10.Final
Hutool:5.8.24
mica-ip2region:3.1.6 |
+| continew-starter-core | 核心模块:包含线程池等自动配置 | Spring Boot:3.1.7
Hutool:5.8.24
mica-ip2region:3.1.6 |
| continew-starter-json-jackson | JSON 模块:Jackson 自动配置 | Jackson:2.15.3 |
| continew-starter-api-doc | API 文档模块:Knife4j 自动配置 | Knife4j:4.4.0 |
+| continew-starter-web | Web 模块:跨域、全局异常、错误处理等自动配置 | Undertow:2.3.10.Final
|
| continew-starter-log-httptrace-pro | 日志模块:Spring Boot Actuator HttpTrace 重置增强版 | |
| continew-starter-storage-local | 存储模块:本地存储 | |
| continew-starter-file-excel | 文件处理模块:Excel 相关配置 | Easy Excel:3.3.4 |
@@ -171,9 +172,7 @@ continew-starter:
| continew-starter-auth-justauth | 认证模块:JustAuth 自动配置 | Just Auth:1.16.6 |
| continew-starter-messaging-mail | 消息模块:邮件 | Jakarta Mail:1.1.0 |
| continew-starter-messaging-sms | 消息模块:短信 | SMS4J:3.0.4 |
-| continew-starter-extension-crud | 扩展模块:CRUD 通用内容封装 | |
-
-
+| continew-starter-extension-crud | 扩展模块:BaseController 自定义 CRUD API 封装 | |
## 贡献代码
@@ -238,7 +237,7 @@ ContiNew Starter 的分支目前分为下个大版本的开发分支和上个大
### 特别鸣谢
- 感谢 JetBrains 提供的 非商业开源软件开发授权
-- 感谢 MyBatis Plus、Sa-Token 、Knife4j、Hutool 等国产开源组件作者为国内开源世界作出的贡献
+- 感谢 MyBatis Plus、Sa-Token 、JetCache、Crane4j、Knife4j、Hutool 等开源组件作者为国内开源世界作出的贡献
- 感谢 ELADMIN、RuoYi-Vue-Plus、Dante-Engine,致敬各位作者为开源脚手架领域作出的贡献
- e.g. 扩展于 ELADMIN 项目开源的 QueryHelper 组件
- e.g. 扩展于 RuoYi-Vue-Plus 项目封装的 SaToken 相关认证鉴权配置
diff --git a/continew-starter-dependencies/pom.xml b/continew-starter-dependencies/pom.xml
index 0036e156..526df3f6 100644
--- a/continew-starter-dependencies/pom.xml
+++ b/continew-starter-dependencies/pom.xml
@@ -53,7 +53,7 @@
- 1.2.0-SNAPSHOT
+ 1.2.0
1.37.0
1.16.6
3.5.5