I have the following scenario:
- a nodejs application that saves the session in redis.
- another spring application that also saves the session in redis.
I would like to share this same session between the two applications. I thought of the following way of doing this (I do not know if it's correct), rewriting the http filter by modifying the way it mounts the session, I found two classes that I think I should rewrite: SessionRepositoryFilter and RedisOperationsSessionRepository.
Am I on the right track, or would it have a simpler way to solve my problem?