Hi all, I am new to Spring AOP and I have some doubts which I am hoping someone can shed some light on:
IN debug mode, I see that a new transaction is been created; but the timeout does not take effect; and does not rollback either... Is there any reason why?Code:@Transactional(timeout = 5, readOnly=true) public void runLongQuery() { jdbcTemplate.queryForList("Select * from sometable); // Takes long time }
I read that it is because the oracle driver does not support readonly transactions. Is that true?


Reply With Quote