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

com.pig4cloud.pigx.common.sequence.properties.SequenceDbProperties Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
package com.pig4cloud.pigx.common.sequence.properties;

/**
 * @author lengleng
 * @date 2019-05-26
 */

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 * @author lengleng
 * @date 2019/5/26
 * 

* 发号器DB配置属性 */ @Data @Component @ConfigurationProperties(prefix = "pigx.xsequence.db") public class SequenceDbProperties extends BaseSequenceProperties { /** * 表名称 */ private String tableName = "pigx_sequence"; /** * 重试次数 */ private int retryTimes = 1; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy