Spring Session配置session有效时间 作者:马育民 • 2020-07-22 19:33 • 阅读:10088 # 第一种 在 启动类 或 配置类 增加注解: ``` @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 1800) ``` 在注解类`EnableRedisHttpSession`中默认失效时间是1800秒,即:30分钟 # 第二种 在`application.yml`配置 ``` server: servlet: session: timeout: 30m ``` 默认30分钟 原文出处:http://malaoshi.top/show_1EF5w3RqdvhF.html