I'm new to Java EE 6 development and am planning on using Glassfish 3.1.2 open source edition. I need to share a simple map data structure across the cluster (needs to be replicated). I've been doing some research and a couple of strategies popped up when using JBoss AS:
- JBoss Cache
- JBoss Infinispan
One strategy would be to use JBoss Infinispan in Glassfish. However I'm wondering if Glassfish already has a built in mechanism for handling this type of thing?
If I used a Singleton bean with a Map in it, would that map be replicated across the cluster?
Thanks for suggestions.