read only transaction « Transaction « Spring Q&A





1. Transactional read only method does nothing, yet tried to execute read only method.    forum.springsource.org

Transactional read only method does nothing, yet tried to execute read only method. Hi, I have a method in my service class which currently does nothing for debugging purposes: Code: @Transactional(propagation ...

2. Can we force read-only transactions to go to the slave?    forum.springsource.org

Can we force read-only transactions to go to the slave? This question may be more appropriate in the mysql forums (so I've asked it there too) but I wanted to see ...

3. AbstractTransactionalDataSourceSp and read-only transactions    forum.springsource.org

I'm using Spring 1.2.4. I'm not trying to do any write inside the test, I'm just testing a findAll method which is defined as read_only. Below is the stacktrace and the ...

4. Read Only Transactions    forum.springsource.org

Hi out there, I have spent a lot of time trying to figure out why, when we update from hibernate 2 to hibernate 3 the performance went down so dramatically. The ...

5. Update occurs during read-only transaction    forum.springsource.org

Update occurs during read-only transaction Am using JPA, Toplink, MySQL, Spring and Spring's OpenEntityManagerInView in tandem. I have the following simple service method for looking up a user by id: @Transactional(readOnly ...

6. Help with read-only transactions?    forum.springsource.org

Help with read-only transactions? I'm sure I must be missing some small something, but I can't get read-only transactions to actually work for me. I hope someone can offer up something ...

7. Transactions hibernate: read-only mode &    forum.springsource.org

Oct 23rd, 2007, 07:25 AM #1 rigasp View Profile View Forum Posts Private Message Junior Member Join Date Oct 2007 Posts 2 Transactions hibernate: read-only mode & Hello, I am trying ...

8. about Transactional read only    forum.springsource.org

hi, I quite confuse of @Transactional attribute: read-only. I find though all API and reference but cannot find a satisfied answer. what is the difference between this the read only true, ...

9. Q : Transaction Read-Write inside Read-Only    forum.springsource.org

Q : Transaction Read-Write inside Read-Only Hi, I'm wondering about the behaviour of Transactions when going through multiple layers, some set as 'REQUIRED, read-only' some as 'REQUIRED, read-write'. Using : Spring ...





10. @Transactional (read only and propgatation support)    forum.springsource.org

Setting readOnly="true" allows the backing data store to perform optimizations appropriate for read-only transactions. PROPAGATION_SUPPORTS is just one of the options available for propagation behavior. Basically it identifies the method as ...

11. Meaning of rollback in read-only transaction    forum.springsource.org

Hi all, I've been reading chapter 9 of spring documentation, which refers to "Transaction Management" and I have a doubt. In section 9.5, which explains "declarative transaction management" there's this example: ...

12. Read only transactions    forum.springsource.org

Read only transactions Hi, I am building a web application that uses spring + jpa + hibernate. I am using declarative transaction management of spring and I have some questions about ...

13. read-only to read-write transaction switching?    forum.springsource.org

read-only to read-write transaction switching? I'm working on an fairly complex system that has been cut over to use spring / hibernate. The architecture of the code isn't ideal and it ...

14. what is read only transaction and how it helps me    forum.springsource.org

15. Read-Only Transactions Not Being Enforced    forum.springsource.org

Read-Only Transactions Not Being Enforced I am using Spring with Hibernate and JPA. I would like some of my methods to be executed within a read-only transaction. Here is my bean ...

16. advantage of read only transaction    forum.springsource.org

advantage of read only transaction Hi All, I have a query this is related to transaction. I have a spring bean which has say two methods A() and B(). I marked ...