1
0
mirror of synced 2025-12-17 20:08:08 +08:00

📝 补充注释

This commit is contained in:
Yangkai.Shen
2019-08-31 12:38:42 +08:00
parent 12369820e5
commit c0ca2979a7

View File

@@ -40,12 +40,12 @@ public class CacheProperties {
private CacheType type = CacheType.DEFAULT; private CacheType type = CacheType.DEFAULT;
/** /**
* 缓存前缀,只在配置外部缓存生效,默认 JUSTAUTH::STATE:: * 缓存前缀,目前只对redis缓存生效,默认 JUSTAUTH::STATE::
*/ */
private String prefix = "JUSTAUTH::STATE::"; private String prefix = "JUSTAUTH::STATE::";
/** /**
* 超时时长默认3分钟 * 超时时长,目前只对redis缓存生效默认3分钟
*/ */
private Duration timeout = Duration.ofMinutes(3); private Duration timeout = Duration.ofMinutes(3);