I need to distribute some objects in my design. First option for this
type of objects may be EJB. (that has remoting + thread pool + object
pool + security + ...).
But I've decided to use Spring cause of simplicity and ....
Now my question: I want to export my objects as remote objects in such
a way that each object be in a its own thread (as is in EJB).
I can export objects using RmiServiceExporer bean.
But how these objects can be accessed in their own specific thread.
(like EJB).
Rod johnson has some comment about replacing some ejb capabilities in
spring but i cannot find a way to have remote objcets in thread pool
in spring.