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

top.lshaci.framework.redis.properties.FrameworkRedisProperties Maven / Gradle / Ivy

The newest version!
package top.lshaci.framework.redis.properties;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;

import javax.validation.constraints.Min;

/**
 * FrameworkRedisProperties
 *
 * @author lshaci
 * @since 1.0.7
 */
@Data
@Validated
@ConfigurationProperties(prefix = "framework.redis")
public class FrameworkRedisProperties {

    /**
     * 生成流水号的长度
     */
    @Min(3)
    private int serialLength = 5;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy