Spring annotation @Transactional for multiple threads

2.8k Views Asked by At

There is a method in service which is annotated with @Transacational. In this method we perform some delete operations and after we want to spawn a new thread and delete some more entries. If there are any exception with the later one. DB is going to inconsistent state because few entries got deleted. Can I propagate transaction to Thread. I read some article on this but could not succeed .

1

There are 1 best solutions below

0
On

Transaction status in spring is stored in a thread local manner. org.springframework.transaction.support.TransactionSynchronizationManager class. Thus transaction related thread local values set from the original delete thread cannot be accessed to the other spawned delete thread.

Also your threads have to be managed by spring in order for your @Transactional annotation to be effective. You need to spawn your threads from a spring ThreadPoolTaskExecutor.