Hello,
I define a transaction manager with org.springframework.orm.jpa.JpaTransactionManager .
We use Hibernate and postgreSQL.
We define a method with
We do into this method only a select. when we watch the log of BDD we see that the transaction terminates with a commit.Quote:
@Transactional(value="transationManager", readOnly=true)
It's only a select request. But is it normal that the transaction finished with a commit and not a rollback?
Thanks for you response.
