python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Does JpaTransactionManager support REQUIRES_NEW propagation?
In my springboot app I have a method with nested transaction as follows.
//message handler
@Transactional(propagation = Propagation.REQUIRES_NEW)
@Override
public void processMessage(Messa...
makozaki
Votes: 0
Answers: 0
How to implement Transaction Manager for multiple Dao
I am writing a Java application following the MVC pattern, abstract enough to allow the backend to connect to an Sql and a NoSql database. I have 4 model classes and 4 DAO interfaces. Each DAO is impl...
Wippo
Votes: 0
Answers: 1
How to set nestedTransactionAllowed to true in Spring?
I have a case where I need to initiate calls to four different services in the same method. According to our business logic all four steps must succeed, rollback otherwise. The problem is that since a...
Erhan Cavdar
Votes: 0
Answers: 2