将登录的超时时间改为3天

This commit is contained in:
季圣华 2023-08-10 00:44:03 +08:00
parent a7b6ae677a
commit 9c7c9d1388

View File

@ -209,5 +209,5 @@ public class BusinessConstants {
* redis相关
* */
//session的生命周期,
public static final Long MAX_SESSION_IN_SECONDS=60*60*24L;
public static final Long MAX_SESSION_IN_SECONDS=60*60*24*3L;
}