提交 45c5bc7c 编写于 作者: 无难事者若执's avatar 无难事者若执

doc : 【id生成器】: 分布式ID-雪花算法实现

上级 e780d9f0
......@@ -13,6 +13,7 @@
- 项目引入包, spring自动配置
- 不支持算法抛错处理
- 支持配置默认算法
- 支持分布式ID 雪花算法
## 使用:
......@@ -78,6 +79,18 @@ public class A{
spring:
utils:
id:
defaultIdGenerator: 'uuid' // 修改
# 默认算法 'uuid' | 'snowflower'
defaultIdGenerator: 'uuid'
# 雪花算法配置
snowFlower:
dataCenterId: 1
workerId: 1
```
```
\ No newline at end of file
4.2 支持雪花算法
雪花算法名 `snowflower`
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册