All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itxiaoer.commons.snowflake.IdWorkerConfiguration Maven / Gradle / Ivy

The newest version!
package com.itxiaoer.commons.snowflake;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.annotation.Resource;

/**
 * id生成器配置
 *
 * @author : liuyk
 */
@Configuration
public class IdWorkerConfiguration {

    @Resource
    private IdWorkerProperties properties;

    @Bean
    public IdWorker idWorker() {
        return new IdWorker(properties.getWorkerId(), properties.getDataCenterId());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy