I know when a transactional method is called from inside the same class it wouldn't be run in a transaction. Spring creates a proxy for transactional methods and wraps them in a try-catch block and rolls back if an exception occurs. Consider the following scenario:
@Transactional
public void saveAB(A a, B b)
{
saveA(a);
saveB(b);
}
@Transactional
public void saveA(A a)
{
dao.saveA(a);
}
@Transactional
public void saveB(B b)
{
dao.saveB(b);
}
Assume saveAB
is called from another object and an exception occurred in saveB
, so saveA
completed successfully but saveB
did not. To my knowledge even though saveA
and saveB
are not transactional (because they are called from the same object), since saveAB
is transactional it should still roll back.
What I don't understand is why do people say self invocation breaks transaction? As long as the caller method is transactional shouldn't everything work as expected? Is there anything I'm missing here?
I never heard that self-invocation breaks transaction. All I know is that self-invocation will not start a new transaction and you already mentioned the reason why.
Snippet from Spring's Transaction Management Specification
If you remove
@Transaction
annotation fromsaveAB()
, you would observe that methodsaveA()
andsaveB()
would not run under transaction even though it is annotated with@Transactional
. However, if you callsaveA()
orsaveB()
from outside the class, it will run under transaction as expected. That is the reason why people advice to be cautious with self-invocation.In my view, self-invoking any public method is a bad idea.