boundary « Transaction « Spring Q&A





1. Understanding Spring Transaction boundaries    stackoverflow.com

I am trying to clear my doubts w.r.t. Spring Transaction boundaries with following example.

@Transactional(propagation=Propagation.REQUIRES_NEW)
public void test() {    
    test1();
    test2();   ...

2. Spring transaction boundary extension    stackoverflow.com

I have a chain of method calls where A calls B that calls C that calls D. A and D have @Transactional annotation. but B and C doesn't. what is ...

3. Spring @Transactional boundaries    stackoverflow.com

I'm using @Transactional in my service layer. If I annotate two updating service methods with @Transactional (using default settings) and a controller method is calling both of these methods to ...

4. Basic transaction boundary question    forum.springsource.org

Basic transaction boundary question Hi, I have been through the documentation but for some reason could not figure out where the transaction begins for a chunk. I can see that it ...

5. binding domain objects inside the transactional boundary    forum.springsource.org

Jan 6th, 2005, 09:19 AM #1 assaf View Profile View Forum Posts Private Message Visit Homepage Member Join Date Sep 2004 Location Toulouse, France Posts 50 binding domain objects inside the ...

6. Define transaction boundary around the handleRequest method    forum.springsource.org

I have many controllers that invoke several methods on the service class, resulting in several hibernate sessions being created. I would like to have all these methods call being encapsulated within ...

7. How do you limit transaction boundaries?    forum.springsource.org

How do you limit transaction boundaries? -- THIS POLL HAS BEEN CLOSED. FUTURE POLLS WILL TAKE PLACE ON WWW.SPRINGFRAMEWORK.ORG -- There are various ways to set your transaction boundaries. This poll ...

8. Transaction boundaries    forum.springsource.org

Transaction boundaries Hi all, I've a weird question. I am not even sure my requirement is appropriate one. Let's say I've Transaction area A, B, C. The execution will go from ...

9. Transaction boundaries with osiv    forum.springsource.org

Hi Spring users, I used the following config to manage that all my method calls in my service layer were wrapped with a transaction: Code: ...





10. org.hibernate.MappingException & Transaction Boundaries    forum.springsource.org

org.hibernate.MappingException & Transaction Boundaries Hi, I have encountered an interesting problem. I have a transactional bean that it's tx attributes looks like this: 2 methods for update and delete with PROPAGATION_REQUIRES_NEW,ISOLATION_READ_COMMITTED, ...

11. Demarcating transaction boundary when using JmsTemplate    forum.springsource.org

Env: Spring 2.5.4 Wehn using the TransactionProxyFactoryBean, I identify the methods that are to be transaction protected on the target using regular expressions in the transactionAttributes of the proxy. However, if ...

12. Trivia Transaction Boundaries Question    forum.springsource.org

Trivia Transaction Boundaries Question Code: @Transactional class Test { @Transactional void foo() throws Exception { //DB Op 1 //DB Op 2 throw new Exception() } @Transactional void bar() { //DB OP ...

13. Transaction boundaries.    forum.springsource.org

Hi there, A basic question I couldn't find an answer for: When working with @Transactional (with Hibernate) and setting a timeout, When do the time start running? Is it when the ...

14. How to control transaction boundaries    forum.springsource.org

How to control transaction boundaries I have a batch job that reads a single row from the database (ItemReader), performs some time intensive calculations (ItemProcessor) and then inserts a handful of ...

15. Increasing the Transaction Boundaries in SpringIntegration.    forum.springsource.org

Feb 25th, 2010, 10:34 AM #1 srikanthradix View Profile View Forum Posts Private Message Member Join Date Nov 2007 Posts 87 Increasing the Transaction Boundaries in SpringIntegration. Our Transaction Template is ...

16. Transaction boundary    forum.springsource.org

Transaction boundary Hi, Performance is degrated(Took 20ms) to execute just a setter method of transaction bean when I have transaction boundary of all the methods as PROPAGATION_REQUIRED,readOnly. My configutation is below. ...