From 1e70dcbd4a831ed560910ffb70224dc6da5249ff Mon Sep 17 00:00:00 2001 From: orangej Date: Thu, 24 Jun 2021 08:28:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=A0=E4=B8=BAehcache=E5=80=9A=E8=B5=96?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=B9=B6=E6=B2=A1=E6=9C=89=E5=BC=95=E5=85=A5?= =?UTF-8?q?=EF=BC=8C=E5=B0=86session=E7=9A=84=E9=BB=98=E8=AE=A4=E5=AD=98?= =?UTF-8?q?=E5=82=A8=E6=94=B9=E4=B8=BAcaffeine=EF=BC=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/jboot/web/session/JbootServletRequestWrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/jboot/web/session/JbootServletRequestWrapper.java b/src/main/java/io/jboot/web/session/JbootServletRequestWrapper.java index 00b3de75..c480f4a7 100644 --- a/src/main/java/io/jboot/web/session/JbootServletRequestWrapper.java +++ b/src/main/java/io/jboot/web/session/JbootServletRequestWrapper.java @@ -42,7 +42,7 @@ public class JbootServletRequestWrapper extends HttpServletRequestWrapper { private static JbootCache jbootCache = JbootCacheManager.me() .getCache(StrUtil.isBlank(cacheType) || JbootCacheConfig.TYPE_NONE.equals(cacheType) - ? JbootCacheConfig.TYPE_EHCACHE + ? JbootCacheConfig.TYPE_CAFFEINE : cacheType); -- Gitee