I am using Spring boot 2 with spring webflux running on netty.
I would like to add session management without needing to have a backing database or redis server (so Spring Session doesn't seem to be a solution here).
I could use WebSession in my controllers, but then I would need to enable sticky sessions on my load balancer, which I would prefer to avoid.
What I would like is one of the following:
- Client side session like in Play framework (session is stored as a cookie and added onto each subsequent request)
- Hazelcast session replication but this only works with servlet containers
Has anyone experienced the same thing and found a viable solution?