I need to maintain a list of objects in a web application. This list can be viewed or modified (items added or deleted) by any user of the web application. There are chances that many users are accessing (modifying) the list almost at the same time. Which is the right approach to share the list. I can think of 2 ways.
- Static variable
- ServletContext
Please let me know which one is right and why. Also, please let me know if there is any other better way.
EDIT Issue is sharing objects between different users of application.