com.github.bootfastconfig.cache.properties.L2CacheProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boot-fast-config-cache Show documentation
Show all versions of boot-fast-config-cache Show documentation
Parent pom providing dependency and plugin management for applications
built with Maven
The newest version!
package com.github.bootfastconfig.cache.properties;
import lombok.Data;
/**
* @author mister
*/
@Data
public class L2CacheProperties {
/**
* 是否动态根据cacheName创建Cache的实现,默认true
*/
private boolean dynamic = true;
private String topic = "spring:l2Cache";
}