I wrote an application that is using beans for creating and storing books(titles,authors etc) to the database. The basic functions for adding and deleting books are implemented in a local stateless bean.
My problem is that I don't quite get how this would work in a concurrent way. If two users would like to get a handle on the managing bean at the same time would this work by default? And if so how exactly does it deal with concurrent requests?
Thanks
Note: Only creation and deletion should be supported.No editing! So I suppose that there are no conflicts there in terms of writes and reads!