container managed beans
Hi all,
In weblogic, there is one stateless session bean (SLSB) as facade to an application that has POJOs.
I do not want to set any transaction settings on the SLSB, instead I want to use Spring declarative transaction setting on one of the POJOs.
My questions:
1) I want to use container managed bean (CMP) for the above SLSB, is it possible because I do not want to set any transaction at this level?
2) What is the default transaction setting for a CMP in weblogic?
3) If I extend this above scenario to use JTA( hitting 2 databases in a single transaction), can I still use CMP in weblogic?
Thanks in advance.

