欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Boot项目集成UidGenerato的方法步骤

程序员文章站 2022-03-13 21:24:13
前言uidgenerato 基于snowflake算法实现uidgenerato 由百度开发,基于snowflake算法的唯一id生成器。uidgenerato 已组件的形式工作在应用项目中,支持自定...

前言

uidgenerato 基于snowflake算法实现

uidgenerato 由百度开发,基于snowflake算法的唯一id生成器。uidgenerato 已组件的形式工作在应用项目中,支持自定义workeid位数和初始化策略,从而适用docker等虚拟化环境下实例自动重启等场景。

准备一个maven项目,构建两个模块。分别作为使用方和提供方。(建两个模块主要是为了“造*”,其他模块或项目可以直接引用,无需关心uid配置,如果没有分模块,可以指忽略构建两个模块)

下载uid源码,放在项目中,开源地址

Spring Boot项目集成UidGenerato的方法步骤

数据库建表

drop table if exists worker_node;create table worker_node
(
id bigint not null auto_increment comment 'auto increment id',
host_name varchar(64) not null comment 'host name',
port varchar(64) not null comment 'port',type int not null comment 'node type: actual or container',
launch_date date not null comment 'launch date',
modified timestamp not null comment 'modified time',
created timestamp not null comment 'created time',primary key(id))
comment='db workerid assigner for uid generator',engine = innodb;

spring 配置

    cacheduidgennerator:

    uidgenerator 有两个具体的实现类,分别是 defaultuidgenerator 和 cacheduidgenerator, 官方推荐使用性能较强的 cacheduidgenerator。

我们直接引用 udigenerator源码中的 cached-uid-spring.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-3.1.xsd">
  <!-- uid generator -->
  <bean id="disposableworkeridassigner" class="com.baidu.fsg.uid.worker.disposableworkeridassigner" />
  <bean id="cacheduidgenerator" class="com.baidu.fsg.uid.impl.cacheduidgenerator">
    <property name="workeridassigner" ref="disposableworkeridassigner" />
    <!-- 以下为可选配置, 如未指定将采用默认值 -->
    <!-- ringbuffer size扩容参数, 可提高uid生成的吞吐量. -->
    <!-- 默认:3, 原buffersize=8192, 扩容后buffersize= 8192 << 3 = 65536 -->
    <!--<property name="boostpower" value="3"></property>-->
    
    <!-- 指定何时向ringbuffer中填充uid, 取值为百分比(0, 100), 默认为50 -->
    <!-- 举例: buffersize=1024, paddingfactor=50 -> threshold=1024 * 50 / 100 = 512. -->
    <!-- 当环上可用uid数量 < 512时, 将自动对ringbuffer进行填充补全 -->
    <!--<property name="paddingfactor" value="50"></property>-->
    
    <!-- 另外一种ringbuffer填充时机, 在schedule线程中, 周期性检查填充 -->
    <!-- 默认:不配置此项, 即不实用schedule线程. 如需使用, 请指定schedule线程时间间隔, 单位:秒 -->
    <!--<property name="scheduleinterval" value="60"></property>-->
    
    <!-- 拒绝策略: 当环已满, 无法继续填充时 -->
    <!-- 默认无需指定, 将丢弃put操作, 仅日志记录. 如有特殊需求, 请实现rejectedputbufferhandler接口(支持lambda表达式) -->
    <!--<property name="rejectedputbufferhandler" ref="xxxxyourputrejectpolicy"></property>-->
    
    <!-- 拒绝策略: 当环已空, 无法继续获取时 -->
    <!-- 默认无需指定, 将记录日志, 并抛出uidgenerateexception异常. 如有特殊需求, 请实现rejectedtakebufferhandler接口(支持lambda表达式) -->
    <!--<property name="rejectedputbufferhandler" ref="xxxxyourputrejectpolicy"></property>-->
    
  </bean>
</beans>

引入cached-uid-spring.xml配置文件,在我们自己新建的 uidconfig中

package com.xxx.uid.config;
import org.springframework.context.annotation.configuration;
import org.springframework.context.annotation.importresource;
/**
* @author lishuzhen
* @date 2020/8/11 16:10
*/
@configuration
@importresource(locations = {"classpath:/uid/cached-uid-spring.xml"})
public class uidconfig {
}

在另一个模块中maven引入,创建一个uidgenutils工具类,方便使用

package com.xxxx.utils;
import com.xxx.uid.uidgenerator;
import org.springframework.stereotype.component;
import javax.annotation.resource;
/**
* @author lishuzhen
* @date 2020/8/11 16:13
*/
@component
public class uidgenutils {
  @resource
  private uidgenerator uidgenerator;
  public long getuid() {
    return uidgenerator.getuid();
  }
  public string getuidstr() {
    return string.valueof(uidgenerator.getuid());
  }
}

到此这篇关于spring boot项目集成uidgenerato的方法步骤的文章就介绍到这了,更多相关spring boot集成uidgenerato内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!