Hi,
Please find my code components below -
1) Spring config xml contents -
2)
Test Java class -
I have following 3 methods -
1) insertUsers (List, TransactionTemplate)
2) insertUsers (List)
3) deleteUsers (List)
The first "insertUsers" method encompasses the call to "jdbcTemplate.batchUpdate" within the TransactionTemplate but in
case of second "insertUsers" method, the call to the method is encompassed within the TransactionTemplate as can be seen
in the "main" method.
In case of any exception, the first "insertUsers" method rollsback all INSERTS while second "insertUsers" method
does not i.e. all INSERTS done before exception get commited.
I am using JDBCTemplate.batchUpdate(
String sql, BatchPreparedStatementSetter setter) to perform a batch INSERT operation in Oracle 11g database.
I believe the connection has 'autocommit' set to true by default.
Could you please advice the reason for the 2 behaviours?
Regards,
Jacob