I am doing a web site with Spring MVC.
I am hoping to build a feature for the admin. As an admin, I would like set a value, which is accessible to all user sessions.
As you know, I can set a value in session, but it is only available to me. I am hoping to set a value accessible to all others in the same JVM.
What is the Java web feature for me to achieve my goal?
I already implemented a database-based feature which affects the users across all servers in a cluster. Now I would like to have a non-database per-JVM solution.