mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-09-08 16:57:09 +08:00
release: v2.12.1
This commit is contained in:
22
CHANGELOG.md
22
CHANGELOG.md
@@ -1,3 +1,25 @@
|
|||||||
|
## [v2.12.1](https://github.com/continew-org/continew-starter/compare/v2.12.0...v2.12.1) (2025-06-09)
|
||||||
|
|
||||||
|
### ✨ 新特性
|
||||||
|
|
||||||
|
- 【messaging/websocket】新增发送消息给所有客户端方法 ([fa2cdf4](https://github.com/continew-org/continew-starter/commit/fa2cdf4f80bf4ca8656b658657398908894dfa40))
|
||||||
|
- 【messaging/websocket】新增批量发送消息方法 ([b543b2f](https://github.com/continew-org/continew-starter/commit/b543b2f94d09658a276e3a77d3091e1ec32360f9))
|
||||||
|
- 【core】ExceptionUtils 新增 exToThrow 方法 ([4a6b462](https://github.com/continew-org/continew-starter/commit/4a6b4624c2ed769bba6c50efd90592f7719247e5))
|
||||||
|
- 【json/jackson】Jackson 大数值序列化增加多模式支持 (Gitee#63@httpsjt) ([918a0ab](https://github.com/continew-org/continew-starter/commit/918a0abfda61bda8199256e4d4ecd5e20564569e)) ([73e2b16](https://github.com/continew-org/continew-starter/commit/73e2b169f7bc4a02140f963fd7b90037be8ff2b8))
|
||||||
|
- 【idempotent】新增默认幂等名称生成器 ([6b95083](https://github.com/continew-org/continew-starter/commit/6b95083c63de6a8eb7a7d08e6d537ec7afdb32f8))
|
||||||
|
- 【cache/redisson】新增 RedisQueueUtils 队列工具类 ([c08b57c](https://github.com/continew-org/continew-starter/commit/c08b57cb489e29b44ae99ec5bd725b72ec9a83a3))
|
||||||
|
|
||||||
|
### 💎 功能优化
|
||||||
|
|
||||||
|
- 调整代码风格 null == xx => xx == null(更符合大众风格) ([265d90f](https://github.com/continew-org/continew-starter/commit/265d90fa4ca0db8ed2bada22bd2881d364efde6e))
|
||||||
|
- 调整 Web 工具类到 core 模块 ([f83a901](https://github.com/continew-org/continew-starter/commit/f83a90162623208d3be75b03450d7ca29780c2b9))
|
||||||
|
- 【security/crypto】优化字段加解密相关代码 ([a4823dc](https://github.com/continew-org/continew-starter/commit/a4823dcb0bf211e26ccb8816928b5332b2bfe216))
|
||||||
|
|
||||||
|
### 🐛 问题修复
|
||||||
|
|
||||||
|
- 【web】添加 Servlet 工具类对 getOs 和 getBrowser 方法中User-Agent 为空或解析失败时的非空判断 (Gitee#61@beginner_b) ([abc005e](https://github.com/continew-org/continew-starter/commit/abc005e69022e7e08a580cd8027a5a3fb73ba929))
|
||||||
|
- 【core】修复 application/x-www-form-urlencoded 请求体数据无法在 Controller 层获取的问题 (Gitee#65@httpsjt) ([eb7dfd4](https://github.com/continew-org/continew-starter/commit/eb7dfd4ed706ed6b72364e316c4278364a4d4af4))
|
||||||
|
|
||||||
## [v2.12.0](https://github.com/continew-org/continew-starter/compare/v2.11.0...v2.12.0) (2025-05-17)
|
## [v2.12.0](https://github.com/continew-org/continew-starter/compare/v2.11.0...v2.12.0) (2025-05-17)
|
||||||
|
|
||||||
### ✨ 新特性
|
### ✨ 新特性
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-api-doc</artifactId>
|
<artifactId>continew-starter-api-doc</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter API 文档模块</description>
|
<description>ContiNew Starter API 文档模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-auth-justauth</artifactId>
|
<artifactId>continew-starter-auth-justauth</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 认证模块 - JustAuth</description>
|
<description>ContiNew Starter 认证模块 - JustAuth</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-auth-satoken</artifactId>
|
<artifactId>continew-starter-auth-satoken</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 认证模块 - SaToken</description>
|
<description>ContiNew Starter 认证模块 - SaToken</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-auth</artifactId>
|
<artifactId>continew-starter-auth</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 认证模块</description>
|
<description>ContiNew Starter 认证模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -8,10 +8,12 @@
|
|||||||
<artifactId>continew-starter-bom</artifactId>
|
<artifactId>continew-starter-bom</artifactId>
|
||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter BOM</description>
|
<description>ContiNew Starter BOM</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<revision>2.12.0</revision>
|
<revision>2.12.1</revision>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
@@ -117,6 +119,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>top.continew</groupId>
|
<groupId>top.continew</groupId>
|
||||||
<artifactId>continew-starter-security-xss</artifactId>
|
<artifactId>continew-starter-security-xss</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- 安全模块 - 敏感词 -->
|
<!-- 安全模块 - 敏感词 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-cache-jetcache</artifactId>
|
<artifactId>continew-starter-cache-jetcache</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 缓存模块 - JetCache</description>
|
<description>ContiNew Starter 缓存模块 - JetCache</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-cache-redisson</artifactId>
|
<artifactId>continew-starter-cache-redisson</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 缓存模块 - Redisson</description>
|
<description>ContiNew Starter 缓存模块 - Redisson</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-cache-springcache</artifactId>
|
<artifactId>continew-starter-cache-springcache</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 缓存模块 - Spring Cache</description>
|
<description>ContiNew Starter 缓存模块 - Spring Cache</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-cache</artifactId>
|
<artifactId>continew-starter-cache</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 缓存模块</description>
|
<description>ContiNew Starter 缓存模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-captcha-behavior</artifactId>
|
<artifactId>continew-starter-captcha-behavior</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 验证码模块 - 行为验证码</description>
|
<description>ContiNew Starter 验证码模块 - 行为验证码</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-captcha-graphic</artifactId>
|
<artifactId>continew-starter-captcha-graphic</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 验证码模块 - 图形验证码</description>
|
<description>ContiNew Starter 验证码模块 - 图形验证码</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-captcha</artifactId>
|
<artifactId>continew-starter-captcha</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 验证码模块</description>
|
<description>ContiNew Starter 验证码模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-core</artifactId>
|
<artifactId>continew-starter-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 核心模块</description>
|
<description>ContiNew Starter 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-data-core</artifactId>
|
<artifactId>continew-starter-data-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 数据访问模块 - 核心模块</description>
|
<description>ContiNew Starter 数据访问模块 - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-data-mf</artifactId>
|
<artifactId>continew-starter-data-mf</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 数据访问模块 - MyBatis Flex</description>
|
<description>ContiNew Starter 数据访问模块 - MyBatis Flex</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-data-mp</artifactId>
|
<artifactId>continew-starter-data-mp</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 数据访问模块 - MyBatis Plus</description>
|
<description>ContiNew Starter 数据访问模块 - MyBatis Plus</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-data</artifactId>
|
<artifactId>continew-starter-data</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 数据访问模块</description>
|
<description>ContiNew Starter 数据访问模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -8,11 +8,13 @@
|
|||||||
<artifactId>continew-starter-dependencies</artifactId>
|
<artifactId>continew-starter-dependencies</artifactId>
|
||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 依赖模块</description>
|
<description>ContiNew Starter 依赖模块</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- 项目版本号 -->
|
<!-- 项目版本号 -->
|
||||||
<revision>2.12.0</revision>
|
<revision>2.12.1</revision>
|
||||||
<spring-boot.version>3.3.11</spring-boot.version>
|
<spring-boot.version>3.3.11</spring-boot.version>
|
||||||
<spring-cloud.version>2023.0.5</spring-cloud.version>
|
<spring-cloud.version>2023.0.5</spring-cloud.version>
|
||||||
<redisson.version>3.46.0</redisson.version>
|
<redisson.version>3.46.0</redisson.version>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-crud-core</artifactId>
|
<artifactId>continew-starter-extension-crud-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - 核心模块</description>
|
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-crud-mf</artifactId>
|
<artifactId>continew-starter-extension-crud-mf</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - MyBatis Flex ORM 模块</description>
|
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - MyBatis Flex ORM 模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-crud-mp</artifactId>
|
<artifactId>continew-starter-extension-crud-mp</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - MyBatis Plus ORM 模块</description>
|
<description>ContiNew Starter 扩展模块 - CRUD(增删改查) - MyBatis Plus ORM 模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-extension-crud</artifactId>
|
<artifactId>continew-starter-extension-crud</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - CRUD(增删改查)</description>
|
<description>ContiNew Starter 扩展模块 - CRUD(增删改查)</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,5 +10,8 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-datapermission-core</artifactId>
|
<artifactId>continew-starter-extension-datapermission-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 数据权限 - 核心模块</description>
|
<description>ContiNew Starter 扩展模块 - 数据权限 - 核心模块</description>
|
||||||
</project>
|
</project>
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-datapermission-mp</artifactId>
|
<artifactId>continew-starter-extension-datapermission-mp</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 数据权限 - MyBatis Plus ORM 模块</description>
|
<description>ContiNew Starter 扩展模块 - 数据权限 - MyBatis Plus ORM 模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-extension-datapermission</artifactId>
|
<artifactId>continew-starter-extension-datapermission</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 数据权限</description>
|
<description>ContiNew Starter 扩展模块 - 数据权限</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-tenant-core</artifactId>
|
<artifactId>continew-starter-extension-tenant-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 多租户 - 核心模块</description>
|
<description>ContiNew Starter 扩展模块 - 多租户 - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
@@ -18,17 +21,5 @@
|
|||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>transmittable-thread-local</artifactId>
|
<artifactId>transmittable-thread-local</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework</groupId>
|
|
||||||
<artifactId>spring-webmvc</artifactId>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>jakarta.servlet</groupId>
|
|
||||||
<artifactId>jakarta.servlet-api</artifactId>
|
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-extension-tenant-mp</artifactId>
|
<artifactId>continew-starter-extension-tenant-mp</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 多租户 - MyBatis Plus ORM 模块</description>
|
<description>ContiNew Starter 扩展模块 - 多租户 - MyBatis Plus ORM 模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-extension-tenant</artifactId>
|
<artifactId>continew-starter-extension-tenant</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块 - 多租户</description>
|
<description>ContiNew Starter 扩展模块 - 多租户</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-extension</artifactId>
|
<artifactId>continew-starter-extension</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 扩展模块</description>
|
<description>ContiNew Starter 扩展模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-file-excel</artifactId>
|
<artifactId>continew-starter-file-excel</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 文件处理模块 - Excel</description>
|
<description>ContiNew Starter 文件处理模块 - Excel</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-file</artifactId>
|
<artifactId>continew-starter-file</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 文件处理模块</description>
|
<description>ContiNew Starter 文件处理模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-idempotent</artifactId>
|
<artifactId>continew-starter-idempotent</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 幂等模块</description>
|
<description>ContiNew Starter 幂等模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-json-jackson</artifactId>
|
<artifactId>continew-starter-json-jackson</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter JSON 模块 - Jackson</description>
|
<description>ContiNew Starter JSON 模块 - Jackson</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-json</artifactId>
|
<artifactId>continew-starter-json</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter JSON 模块</description>
|
<description>ContiNew Starter JSON 模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -9,6 +9,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-license-core</artifactId>
|
<artifactId>continew-starter-license-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter License 模块 - 核心模块</description>
|
<description>ContiNew Starter License 模块 - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-license-generator</artifactId>
|
<artifactId>continew-starter-license-generator</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter License 模块 - 生成器</description>
|
<description>ContiNew Starter License 模块 - 生成器</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-license-verifier</artifactId>
|
<artifactId>continew-starter-license-verifier</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter License 模块 - 校验器</description>
|
<description>ContiNew Starter License 模块 - 校验器</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-license</artifactId>
|
<artifactId>continew-starter-license</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter License模块</description>
|
<description>ContiNew Starter License模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -9,6 +9,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-log-aop</artifactId>
|
<artifactId>continew-starter-log-aop</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 日志模块 - 基于 AOP 实现</description>
|
<description>ContiNew Starter 日志模块 - 基于 AOP 实现</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-log-core</artifactId>
|
<artifactId>continew-starter-log-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 日志模块 - 核心模块</description>
|
<description>ContiNew Starter 日志模块 - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-log-interceptor</artifactId>
|
<artifactId>continew-starter-log-interceptor</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 日志模块 - 基于拦截器实现(Spring Boot Actuator HttpTrace 增强版)</description>
|
<description>ContiNew Starter 日志模块 - 基于拦截器实现(Spring Boot Actuator HttpTrace 增强版)</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-log</artifactId>
|
<artifactId>continew-starter-log</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 日志模块</description>
|
<description>ContiNew Starter 日志模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-messaging-mail</artifactId>
|
<artifactId>continew-starter-messaging-mail</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 消息模块 - 邮件</description>
|
<description>ContiNew Starter 消息模块 - 邮件</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-messaging-websocket</artifactId>
|
<artifactId>continew-starter-messaging-websocket</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 消息模块 - WebSocket</description>
|
<description>ContiNew Starter 消息模块 - WebSocket</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-messaging</artifactId>
|
<artifactId>continew-starter-messaging</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 消息模块</description>
|
<description>ContiNew Starter 消息模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -8,6 +8,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-ratelimiter</artifactId>
|
<artifactId>continew-starter-ratelimiter</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 限流模块</description>
|
<description>ContiNew Starter 限流模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-security-crypto</artifactId>
|
<artifactId>continew-starter-security-crypto</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块 - 加密</description>
|
<description>ContiNew Starter 安全模块 - 加密</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,5 +10,8 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-security-mask</artifactId>
|
<artifactId>continew-starter-security-mask</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块 - 脱敏</description>
|
<description>ContiNew Starter 安全模块 - 脱敏</description>
|
||||||
</project>
|
</project>
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-security-password</artifactId>
|
<artifactId>continew-starter-security-password</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块 - 密码编码器</description>
|
<description>ContiNew Starter 安全模块 - 密码编码器</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-security-sensitivewords</artifactId>
|
<artifactId>continew-starter-security-sensitivewords</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块 - 敏感词模块</description>
|
<description>ContiNew Starter 安全模块 - 敏感词模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,5 +10,8 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-security-xss</artifactId>
|
<artifactId>continew-starter-security-xss</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块 - XSS 过滤模块</description>
|
<description>ContiNew Starter 安全模块 - XSS 过滤模块</description>
|
||||||
</project>
|
</project>
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-security</artifactId>
|
<artifactId>continew-starter-security</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 安全模块</description>
|
<description>ContiNew Starter 安全模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -9,6 +9,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-storage-core</artifactId>
|
<artifactId>continew-starter-storage-core</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 存储模块 - 核心模块</description>
|
<description>ContiNew Starter 存储模块 - 核心模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-storage-local</artifactId>
|
<artifactId>continew-starter-storage-local</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 存储模块 - 本地存储</description>
|
<description>ContiNew Starter 存储模块 - 本地存储</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -9,6 +9,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-storage-oss</artifactId>
|
<artifactId>continew-starter-storage-oss</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 存储模块 - 对象存储</description>
|
<description>ContiNew Starter 存储模块 - 对象存储</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter-storage</artifactId>
|
<artifactId>continew-starter-storage</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 存储模块</description>
|
<description>ContiNew Starter 存储模块</description>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-trace</artifactId>
|
<artifactId>continew-starter-trace</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter 链路追踪模块</description>
|
<description>ContiNew Starter 链路追踪模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@@ -10,6 +10,9 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-starter-web</artifactId>
|
<artifactId>continew-starter-web</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
<description>ContiNew Starter Web 模块</description>
|
<description>ContiNew Starter Web 模块</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
1
pom.xml
1
pom.xml
@@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
<artifactId>continew-starter</artifactId>
|
<artifactId>continew-starter</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>ContiNew Starter</name>
|
<name>ContiNew Starter</name>
|
||||||
<description>
|
<description>
|
||||||
ContiNew Starter(Continue New Starter)基于“约定优于配置”的理念,
|
ContiNew Starter(Continue New Starter)基于“约定优于配置”的理念,
|
||||||
|
Reference in New Issue
Block a user