Springboot Session 过期

2.0以前:

    server. session.timeout: 3000     (单位秒:)

2.0以后:

server.servlet.session.timeout: 120m (后面m 表示单位: 目前支持s,m,d 等等,通过看源码,发现还支持其他日期类型。


永不过期:

通过参考:https://cloud.tencent.com/developer/article/1340140

设置时间为0或小于0,则表示永不过期


参考地址: https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/html/boot-features-session.html

在官网介绍中,我们还看到session还支持其他插件,如下:

JDBC

Redis

Hazelcast

MongoDB

你可能感兴趣的:(Springboot Session 过期)