I have an ATG application running on a jboss as an App Server. The request-scoped component(bean) say CartManager has a method addToBag(...).
Since it has request scope my understanding is that its instantiated upon each request and the App Server guarantees that only one thread have access to that instance.
We're experiencing a concurrency issues so I just want to rule out one possible explanation.