I have two different process ( A and B), and A has to start after B, B must not join the A's transaction, B has to wait until A finish its commit.
what propagation should i use ?
Now it is like :
@Transactional
A()
and
@Transactional
B()
Now i use it defult @Transactional, and its not work properly. I think i should use PROPAGATION.
I hope the question is clear. Thanks in advance.