Hi Is their a way to set autocommit to false in spring jdbctemplate.
The thing is instead of transaction (where their is rollback option), I want to have query committed at end of transaction.
So instead of
insert --> commit --> rollback.
I want insert --> fail --> (no commit).
I tried to catch your question, and there are some ideas to solve them. The way set
autocommit
tofalse
in springjdbctemplate
:defaultAutoCommit
property ofDataSource
tofalse
.You can commit or rollback by writing codes as below: