From 3ff69e0205d9ab9933c01ba909f9634823d39abc Mon Sep 17 00:00:00 2001 From: Ahoo Wang Date: Tue, 2 Jan 2024 14:45:45 +0800 Subject: [PATCH] feat(doc): update cosid-activiti.md --- .../docs/guide/extensions/cosid-activiti.md | 11 ++++++++++- documentation/docs/guide/extensions/cosid-axon.md | 11 ++++++++++- .../docs/guide/extensions/cosid-flowable.md | 12 +++++++++++- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/documentation/docs/guide/extensions/cosid-activiti.md b/documentation/docs/guide/extensions/cosid-activiti.md index 5abb2bfb72..3d883f4586 100644 --- a/documentation/docs/guide/extensions/cosid-activiti.md +++ b/documentation/docs/guide/extensions/cosid-activiti.md @@ -1,5 +1,7 @@ # CosId-Activiti 模块 +_Activiti 模块_ 为 `Activiti` 提供了 `CosId` 的支持,实现了 _Activiti_ 的 `org.activiti.engine.impl.cfg.IdGenerator` 接口。 + ## 安装 ::: code-group @@ -16,4 +18,11 @@ ``` -::: \ No newline at end of file +::: + +## 配置 + +默认情况下 `ActivitiIdGenerator` 将从*ID生成器容器*(`IdGeneratorProvider`)中获取以 `__share__` 为名称的ID生成器。 + +开发者也可以通过配置系统属性 `cosid.activiti` 自定义ID生成器的名称。 + diff --git a/documentation/docs/guide/extensions/cosid-axon.md b/documentation/docs/guide/extensions/cosid-axon.md index 8d9e8a50eb..464f629d4f 100644 --- a/documentation/docs/guide/extensions/cosid-axon.md +++ b/documentation/docs/guide/extensions/cosid-axon.md @@ -1,5 +1,7 @@ # CosId-Axon 模块 +_Axon 模块_ 为 `Axon-Framework` 提供了 `CosId` 的支持,实现了 _Axon-Framework_ 的 `org.axonframework.common.IdentifierFactory` 接口。 + ## 安装 ::: code-group @@ -16,4 +18,11 @@ ``` -::: \ No newline at end of file +::: + +## 配置 + +默认情况下 `CosIdIdentifierFactory` 将从*ID生成器容器*(`IdGeneratorProvider`)中获取以 `__share__` 为名称的ID生成器。 + +开发者也可以通过配置系统属性 `cosid.axon` 自定义ID生成器的名称。 + diff --git a/documentation/docs/guide/extensions/cosid-flowable.md b/documentation/docs/guide/extensions/cosid-flowable.md index c4a9eb76cb..bf701a6d7d 100644 --- a/documentation/docs/guide/extensions/cosid-flowable.md +++ b/documentation/docs/guide/extensions/cosid-flowable.md @@ -1,5 +1,7 @@ # CosId-Flowable 模块 +_Flowable 模块_ 为 `Flowable` 提供了 `CosId` 的支持,实现了 _Flowable_ 的 `org.flowable.common.engine.impl.cfg.IdGenerator` 接口。 + ## 安装 ::: code-group @@ -16,4 +18,12 @@ ``` -::: \ No newline at end of file +::: + +## 配置 + +默认情况下 `FlowableIdGenerator` 将从*ID生成器容器*(`IdGeneratorProvider`)中获取以 `__share__` 为名称的ID生成器。 + +开发者也可以通过配置系统属性 `cosid.flowable` 自定义ID生成器的名称。 + +