HttpSessionEventPublisher

HttpSessionEventPublisher

我有一个使用此方案的项目:
弹簧靴
春季安全
雷迪斯
除了上课时间,一切都很好。
我想把代币永久保存在redis中。令牌必须没有过期我该怎么办?
这和我的httpsessionconfig的配置:

@Configuration
@EnableRedisHttpSession
public class HttpSessionConfig {

    @Bean
    public HttpSessionEventPublisher httpSessionEventPublisher() {
            return new HttpSessionEventPublisher();
    }
}

spring-security - Spring Boot  -  Redis持久性 token-LMLPHP

最佳答案

rwinch先生建议使用以下命令:

EnableRedisHttpSession (MaxInactiveIntervalInSeconds = Integer.MAX_VALUE)

这样,会议将在68年后到期:)

10-06 03:28