docs: highlight code blocks Java readme.md
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
JDK 1.8+
|
||||
|
||||
## 引用 maven 包
|
||||
```
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.github.yitter</groupId>
|
||||
<artifactId>yitter-idgenerator</artifactId>
|
||||
@@ -16,7 +16,7 @@ JDK 1.8+
|
||||
## 调用示例(Java)
|
||||
|
||||
第1步,**全局** 初始化(应用程序启动时执行一次):
|
||||
```
|
||||
```java
|
||||
// 创建 IdGeneratorOptions 对象,可在构造函数中输入 WorkerId:
|
||||
IdGeneratorOptions options = new IdGeneratorOptions(Your_Unique_Worker_Id);
|
||||
// options.WorkerIdBitLength = 10; // 默认值6,限定 WorkerId 最大值为2^6-1,即默认最多支持64个节点。
|
||||
@@ -31,7 +31,7 @@ YitIdHelper.setIdGenerator(options);
|
||||
```
|
||||
|
||||
第2步,生成ID:
|
||||
```
|
||||
```java
|
||||
// 初始化后,在任何需要生成ID的地方,调用以下方法:
|
||||
long newId = YitIdHelper.nextId();
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user