私のアプリケーションでは、Spring SecurityとSpring Session(v1.3.1)を使用しています。RedisセッションリポジトリでSpringSessionBackedSessionRegistryを使用する
私はセッションレジストリとしてSpringSessionBackedSessionRegistryを、セッションレポジトリとしてはRedisを使用したいと思います。次のように
SpringSessionBackedSessionRegistryのコンストラクタは次のとおりです。
SpringSessionBackedSessionRegistry(FindByIndexNameSessionRepository<ExpiringSession> sessionRepository)
Redisのリポジトリ、RedisOperationsSessionRepository道具:
FindByIndexNameSessionRepository<org.springframework.session.data.redis.RedisOperationsSessionRepository.RedisSession>
どのように、そして、私はRedisOperationsSessionRepositoryのインスタンスを与えられSpringSessionBackedSessionRegistryのインスタンスを構築することができますか?
なぜSpringSessionBackedSessionRegistryないのコンストラクタです:
SpringSessionBackedSessionRegistry(FindByIndexNameSessionRepository<? extends ExpiringSession> sessionRepository)