Stateless Session Beans vs. Singleton Session Beans

I would go for Stateless – the server can generate many instances of the bean and process incoming requests in parallel.

Singleton sounds like a potential bottleneck – the default @Lock value is @Lock(WRITE) but may be changed to @Lock(READ) for the bean or individual methods.

Leave a Comment