Hi all,
I am trying to understand when is better Spring instead EJB
the documentation says:
Spring does not support propagation of transaction contexts across remote calls, as do high-end application servers. If you need this feature, we recommend that you use EJB. However, consider carefully before using such a feature. Normally, we do not want transactions to span remote calls.
Can somebody help me to understand it?
If I chose spring and then I realize that I should have used EJB, How do you recommend to implement my application in order to modify this easily?
Thanks for any comment,


Reply With Quote
). Spring is good in encouraging good programming practice and I think, client controlled transactions don't fit this category.