Stateless Session Bean

Can we have a multithreaded method in a stateless session (just like service method of a servlet) which would allow us to support multiple clients there by eliminating the need for stateless session bean pool.

[216 byte] By [Harmindera] at [2007-11-27 10:43:02]
# 1

Any stateless object is threadsafe, and that's the whole point of distiguishing stateless session beans.

Of course clients may be in different JVMs, so can't share actual instances.

malcolmmca at 2007-7-28 19:22:13 > top of Java-index,Java Essentials,Java Programming...