com.ideaaedi.extspringcache.properties.nested.ExtRedisProperties Maven / Gradle / Ivy
The newest version!
package com.ideaaedi.extspringcache.properties.nested;
import lombok.Data;
/**
* (non-javadoc)
*
* @author JustryDeng
* @since 1.0.0
*/
@Data
public class ExtRedisProperties {
/**
*
* true:
* 默认对spring-context中的配置作出响应。 即:在spring-context中若存在相应配置或相关bean,那么会影响所有的Redis。
* 此时,可通过在使用@Redis注解时,显示的指定相关配置来覆盖 spring-context中的配置
* false:
* 默认不对spring-context中的配置作出响应。即:不管spring-context是否存在相应配置或相关bean,都不会影响Redis。
* 此时,在使用@Redis注解时,显示的指定相关配置依然有效
*
*/
private boolean responseSpringContext = true;
}