Giả sử bạn đã cấu hình đúng Spring Session (với Spring Boot 1.5.x
đó sẽ là bằng cách đặt spring.session.store-type
thuộc tính cấu hình thành redis
hoặc rõ ràng bằng cách sử dụng @EnableRedisHttpSession
), bạn sẽ có thể sử dụng FindByIndexNameSessionRepository<? extends ExpiringSession>
. Ví dụ:
@Autowired
FindByIndexNameSessionRepository<? extends ExpiringSession> sessionRepository;