If I have a bean with a DAO bean using TransactionProxyFactoryBean, where the operation is just a read-only query, what is the performance impact of having a "transactionAttributes" setting like this:
PROPAGATION_SUPPORTS,readOnly
I have a couple read-only operations like this which are performed both before and after other operations that write rows to the database.
Is there any value in doing something different with the transaction attributes for a read-only operation?


Reply With Quote