python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
REPEATABLE READ isolation level at update method is meaningful?
The Repeatable Read isolation level only sees data committed before the transaction began.
So, I think it is only meaningful at Method doing repeat select.
But, I see a below code.
@Transactional(isol...
NJS
Votes: 0
Answers: 0
Spring Jdcb transaction not rolling back
For some reason, there is no transaction management in my app.
Here is my code:
@Autowired
JdbcTemplate jdbcTemplate;
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)...
ROBLCSnail
Votes: 0
Answers: 1
Spring boot @Transactional and @Async not working together
I am trying to make a function transactional by using the spring's @Transactional annotation. The function is something like this
@Transactional
public void doSomething() {
recordActionInDb();
u...

Deepak Sharma
Votes: 0
Answers: 0
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