Top "Spring-transactions" questions

Questions related to Spring's Transaction API (programmatic or declarative)

Synchronising transactions between database and Kafka producer

We have a micro-services architecture, with Kafka used as the communication mechanism between the services. Some of the services have …

apache-kafka spring-transactions spring-kafka distributed-transactions
Is Spring @Service transactional?

When I am on a spring service and I want to update several database tables through spring repositories, do I …

java spring spring-data-jpa spring-transactions
Does Spring @transaction work on a concrete method of abstract class

From spring reference doc Spring recommends that you only annotate concrete classes (and methods of concrete classes) with the @Transactional …

spring transactions spring-transactions
How to manage the transaction(which includes File IO) when an IOException is thrown from the close file method

I've recently begun using Spring's Data Source Transaction Manager. I have a problem now. My transaction includes updates to a …

java file-io transactions spring-transactions