Spring Boot 工程集成全局惟一ID生成器 Vesta

AE-86

本文內容腦圖以下:java

本文內容腦圖

文章共 760字,閱讀大約須要 2分鐘 !git


概 述

在前一篇文章 《Spring Boot工程集成全局惟一ID生成器 UidGenerator》 中給你們推薦了一款由百度開發的基於 Snowflake算法實現的全局惟一ID生成器 UidGenerator,而本文則給你們再度推薦一款優秀的全局惟一ID生成器,名叫 Vesta。github

Vesta 是豔鵬大佬的開源做品,基於Java開發,其體驗地址 在此。Vesta 是一款通用的 ID產生器,互聯網俗稱統一發號器,其具備幾大很具備優點的特性:算法

  • 全局惟一
  • 粗略有序
  • 可反解
  • 可製造
  • 分佈式

並且支持三種發佈模式:spring

  • 嵌入式發佈模式
  • 中心服務器發佈模式
  • REST 發佈模式

根據業務的性能需求,它能夠產生 最大峯值型最小粒度型 兩種類型的 ID,它的實現架構使其具備高性能,高可用和可伸縮等互聯網產品須要的質量屬性,是一款通用的高性能的發號器產品。瀏覽器

本文就在 Spring Boot項目中將 Vesta耍起來!服務器

注: 本文首發於 My Personal Blog:CodeSheep·程序羊,歡迎光臨 小站架構


基礎工程搭建

Spring Boot基礎工程的搭建我再也不贅述,建立好工程後 pom中須要加入以下依賴:app

<dependency>
            <groupId>com.robert.vesta</groupId>
            <artifactId>vesta-service</artifactId>
            <version>0.0.1</version>
        </dependency>

        <dependency>
            <groupId>com.robert.vesta</groupId>
            <artifactId>vesta-intf</artifactId>
            <version>0.0.1</version>
        </dependency>

對應的 Jar包去編譯一下 Vesta源碼便可得到,源碼在此分佈式


Vesta 配置導入

  • 在項目resources目錄中加入 Vesta的配置文件

引入vesta-rest.properties,配置以下:

vesta.machine=1021  # 機器ID
vesta.genMethod=0   # 生成方式,0表示使用嵌入發佈模式
vesta.type=1        # ID類型,1表示最小粒度型

引入 vesta-rest-main.xml,配置以下:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

  <bean
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations" value="classpath:ext/vesta/vesta-rest.properties"/>
  </bean>

  <bean id="idService" class="com.robert.vesta.service.factory.IdServiceFactoryBean"
    init-method="init">
    <property name="providerType" value="PROPERTY"/>
    <property name="type" value="${vesta.type}"/>
    <property name="genMethod" value="${vesta.genMethod}"/>
    <property name="machineId" value="${vesta.machine}"/>
  </bean>

</beans>

好,接下來咱們建立一個 Config配置類來將 vesta-rest-main.xml配置文件加載進項目

  • 建立 UidConfig配置類
@Configuration
@ImportResource( locations = { "classpath:ext/vesta/vesta-rest-main.xml" } )
public class UidConfig {
}

編寫 Vesta Service

這裏麪包含的是和 ID生成器相關的幾個重要工具接口,主要有:

  • genId 生成全局惟一 ID號
  • explainId 反解全局惟一 ID號,獲得能夠解釋 ID號含義的 JSON數據
  • makeId 手工製造 ID

來看代碼吧

@Service
public class UidService {

    @Resource
    private IdService idService;

    public long genId() {
        return idService.genId();
    }

    public Id explainId( long id ) {
        return idService.expId(id);
    }

    public long makeId( long version, long type, long genMethod, long machine, long time, long seq ) {

        long madeId = -1;
        if (time == -1 || seq == -1)
            throw new IllegalArgumentException( "Both time and seq are required." );
        else if (version == -1) {
            if (type == -1) {
                if (genMethod == -1) {
                    if (machine == -1) {
                        madeId = idService.makeId(time, seq);
                    } else {
                        madeId = idService.makeId(machine, time, seq);
                    }
                } else {
                    madeId = idService.makeId(genMethod, machine, time, seq);
                }
            } else {
                madeId = idService.makeId(type, genMethod, machine, time, seq);
            }
        } else {
            madeId = idService.makeId(version, type, genMethod, time,
                    seq, machine);
        }

        return madeId;
    }

}

編寫測試 Controller

咱們針對上述 UidService中提供的三個工具接口來各自編寫一個測試接口:

@RestController
public class UidController {

    @Autowired
    private UidService uidService;

    @RequestMapping("/genid")
    public long genId() {
        return uidService.genId();
    }

    @RequestMapping("/expid")
    public Id explainId(@RequestParam(value = "id", defaultValue = "0") long id) {
        return uidService.explainId( id );
    }

    @RequestMapping("/makeid")
    public long makeId(
            @RequestParam(value = "version", defaultValue = "-1") long version,
            @RequestParam(value = "type", defaultValue = "-1") long type,
            @RequestParam(value = "genMethod", defaultValue = "-1") long genMethod,
            @RequestParam(value = "machine", defaultValue = "-1") long machine,
            @RequestParam(value = "time", defaultValue = "-1") long time,
            @RequestParam(value = "seq", defaultValue = "-1") long seq) {

        return uidService.makeId( version, type, genMethod, machine, time, seq );
    }
}

實驗驗證

  • 實驗一

首先咱們用瀏覽器調用接口 genid,來返回生成的全局惟一 ID流水號,一切都是那麼的簡單優雅:

生成全局惟一流水號

  • 實驗二

因爲 Vesta生成的全局惟一流水號具備 可反解 的優良特性,所以咱們能夠先生成一個流水號,而後調用 expid接口來反解出流水號所表明的意義:

全局惟一流水號的反解效果


後 記

因爲能力有限,如有錯誤或者不當之處,還請你們批評指正,一塊兒學習交流!

相關文章
相關標籤/搜索