Spring - Transaction Readonly
- by AAK
Hello Gurus! Just wanted your expert opinions on declarative transaction management for Spring. Here is my setup -
A. DAO Layer is Plain old JDBC using jdbcTemplete (No hibernate etc)
B. Service Layer is POJO with declarative trasnactions as follows -
save*, readonly=false, rollback for Throwable
Things work fine with above setup. However when I…