Caching of session session bean.
I want to use a stateless session bean as Controller. The controller will then forward requests to relevant process session beans. The controller bean will be called by a MainServlet (or whatever the channel is).
Will the container create multiple session beans for each request, and will they be cached automatically?
If only one instance is used, will I have to worry about making it thread safe.

