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

me.youm.frame.redis.props.RedisProperties Maven / Gradle / Ivy

The newest version!
package me.youm.frame.redis.props;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * redis配置
 *
 * @author youta
 */
@Getter
@Setter
@ConfigurationProperties(RedisProperties.PREFIX)
public class RedisProperties {
	/**
	 * 前缀
	 */
	public static final String PREFIX = "shore.redis";
	/**
	 * 是否开启Lettuce
	 */
	private Boolean enable = true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy