What are the different approaches for Java EE session replication?

后端 未结 3 1962
遇见更好的自我
遇见更好的自我 2021-02-04 12:51

I am working on a project that requires really high availability and my team is currently working on upgrading some infra-structure and software for a future release.

On

相关标签:
3条回答
  • 2021-02-04 13:26

    Take a look at Oracle Coherence with HTTP session management module Coherence*Web.

    It is in-memory basically but can be more persistence through DB or other storages.

    0 讨论(0)
  • 2021-02-04 13:30

    If you're using tomcat then memcached-session-manager would be an option. It's a custom session manager that replicates sessions via memcached and supports both sticky and non-sticky sessions: http:// code.google.com/p/memcached-session-manager

    Cheers, Martin

    0 讨论(0)
  • 2021-02-04 13:43

    You might want to look at Hazelcast and their HTTP Session Clustering feature

    0 讨论(0)
提交回复
热议问题