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.
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.
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.