Problem 1 « Transaction « Spring Q&A;

Home
Spring Q&A;
1.Annotation
2.AOP
3.Batch
4.Bean
5.Binding
6.Context
7.Core
8.Database
9.Development
10.EJB
11.Exception
12.File
13.GWT
14.Integration
15.Internationalization
16.Java EE
17.Job
18.JPA
19.JSF
20.Message
21.MVC
22.MVC Controller
23.Object
24.Remote
25.Roo
26.Security
27.Session
28.Spring Tool Suite
29.Struts
30.Test
31.Thread
32.Transaction
33.Web
34.Web Service
35.XML
Spring Q&A; » Transaction » Problem 1 

1. Hibernate transaction problem    stackoverflow.com

We are using Hibernate Spring MVC with OpenSessionInView filter. Here is a problem we are running into (pseudo code)

transaction 1 
load object foo
transaction 1 end

update foo's properties (not calling session.save or session.update ...

2. Transaction problem with JPA2-spring-Hibernate    stackoverflow.com

Hi I got a problem with the above integration of the frameworks. I'm using JPA2 in a maven configuration with the library versions:

  • Spring 3.0.5
  • Hibernate 3.5.4
  • Hibernate-jpa-2.0-api-1.0.0.Final
I'm using the persistence.xml:
<persistence-unit name="AccountingPU" transaction-type="RESOURCE_LOCAL">
  ...

3. Problem with user transaction while upgrading was6.1 to was7.0    forum.springsource.org

Problem with user transaction while upgrading was6.1 to was7.0 Hi , I am trying to upgrade my spring based application from WAS6.1 to WAS7.0. My application is using message listner defined ...

4. Transaction Problem using Spring+Hibernate    forum.springsource.org

Transaction Problem using Spring+Hibernate Hi, I have encountered problems using declarative transaction demarcation. I have a parent-child class "binded" using foreign key in Hibernate. In my business manager class, I have ...

5. New to Spring-Transaction managment problem    forum.springsource.org

Sep 14th, 2004, 11:39 AM #1 skamiset View Profile View Forum Posts Private Message Junior Member Join Date Sep 2004 Posts 5 New to Spring-Transaction managment problem Hi, I just started ...

6. a @Transactional problem    forum.springsource.org

hi we have a situation which we found to be not working: Code: public class Foo { @Transactional public void doSomeUpdates(..) { ... } @Transactional public void doSomeMoreUpdates(..) .. } } ...

7. Hibernate validator + @Transactional problem    forum.springsource.org

Hibernate validator + @Transactional problem Hello I do the following operation: Code: @Transactional public void updateEntity(MyEntity e) { this._hibernateTemplate.saveOrUpdate(e); // supposed to validate e and save or update it doSomeCalculations(e); // ...

8. Class Hierarchy problem using Transactional    forum.springsource.org

Class Hierarchy problem using Transactional Project setup: Spring 3.0.5 / JPA 2 / Hibernate / @Transactional We work with several different Data Sources (and hence different transaction managers), but have common ...

9. Problem with transaction    forum.springsource.org

Anyone successfully use transactions w/ Weblogic/Hibernate/JMS?? I am having no luck in trying to figure out how to implement transactions with my Weblogic deployed app using Spring/Hibernate/JMS. I have a method ...

10. Problem with Transaction Management    forum.springsource.org

Problem with Transaction Management Hi, I am trying to create a simple application which registers a user using Spring 3, Hibernate and mySQL. I am trying to do as per the ...

11. problems configuring transaction manager for taskletStep    forum.springsource.org

problems configuring transaction manager for taskletStep Hello, essentially I'm trying to run an example from http://java.dzone.com/news/spring-batch-hello-world-1 which is a little dated and was probably written for an older version of spring ...

12. Transaction Problem.    forum.springsource.org

Transaction Problem. Hi, although I read this http://forum.springframework.org/sho...ob+hiber nate thread, I still have problems configuring HibernateTransactionManager properly. From my applicationContext.xml: Code: ...

13. Spring Transaction Problem    forum.springsource.org

Spring Transaction Problem I have my jee application that has transaction management done in spring, my first page in application has balance showing section that shows balance of the user from ...

14. Transaction rollback problem using Spring with OSWorkflow    forum.springsource.org

Hi, I am using Spring to manage my transactional requirement during the saving process. And I am using the JDBCWorkflow to handle the persistency of workflow information. The problem is when ...

15. Spring 3.1.RC1 + Hibernate 4.0.CR4 transaction problem    forum.springsource.org

Spring 3.1.RC1 + Hibernate 4.0.CR4 transaction problem Hello! With the above configuration I have problems with bean methods having propagation type of "REQUIRES_NEW". It worked well with Spring 3.0.6. Do you ...

16. TransactionManager Problem with xml and Code    forum.springsource.org

TransactionManager Problem with xml and Code Hi I have start using Spring since yesterday. I have tried to code a little example. I get it working but I have a problem ...

17. Problem with transactions using Spring+Hibernate    forum.springsource.org

Dec 9th, 2004, 01:39 PM #1 phearinc View Profile View Forum Posts Private Message Junior Member Join Date Dec 2004 Posts 3 Problem with transactions using Spring+Hibernate Hello, I'm currently having ...

18. Problem using TransactionProxyFactoryBean    forum.springsource.org

Problem using TransactionProxyFactoryBean I tried to use TransactionProxyFactoryBean like this: PROPAGATION_REQUIRED,readOnly PROPAGATION_REQUIRED but ...

19. Problem about JTA with Spring and Hibernate.    forum.springsource.org

Code: 02:08:30,103 INFO [JtaTransactionManager] Using JTA UserTransaction [org.jboss. tm.usertx.client.ServerVMClientUserTransaction@f8ff42] from JNDI location [java: comp/UserTransaction] 02:08:30,113 INFO [JtaTransactionManager] No JTA TransactionManager specified - transaction suspension not available

20. Spring + Hibernate transaction problem    forum.springsource.org

Mar 8th, 2005, 06:51 AM #1 ivana View Profile View Forum Posts Private Message Junior Member Join Date Mar 2005 Posts 1 Spring + Hibernate transaction problem Hi, I am using ...

21. Spring/Hibernate3 Transaction Management Problem?    forum.springsource.org

Apr 6th, 2005, 07:12 AM #1 bendg25 View Profile View Forum Posts Private Message Member Join Date Dec 2004 Posts 65 Spring/Hibernate3 Transaction Management Problem? Hi I have an object A, ...

22. Problems with Spring Transaction Support    forum.springsource.org

Problems with Spring Transaction Support Hello, I'll try to explain the problem as clear as possible. I have a web app with Hibernate on persistence layer. I have a service class ...

23. HORRIBLE Problem with TransactionProxyFactoryBean    forum.springsource.org

HORRIBLE Problem with TransactionProxyFactoryBean Hello Everyone: I am having a truly gruesome problem with TransactionProxyFactoryBean, and I need some help rather badly. I have used declarative transactions before, and I had ...

24. HORRIBLE Problem with TransactionProxyFactoryBean    forum.springsource.org

HORRIBLE Problem with TransactionProxyFactoryBean Hello Everyone: I am having a truly gruesome problem with TransactionProxyFactoryBean, and I need some help rather badly. I have used declarative transactions before, and I had ...

25. Problem using TransactionProxyFactoryBean    forum.springsource.org

Problem using TransactionProxyFactoryBean I have the follwing code: Code: PROPAGATION_NOT_SUPPORTED PROPAGATION_REQUIRED ...

26. Transaction Problem    forum.springsource.org

May 23rd, 2005, 09:15 PM #1 tripperm View Profile View Forum Posts Private Message Junior Member Join Date May 2005 Posts 7 Transaction Problem I am having some issues using Spring's ...

27. TransactionProxyFactoryBean and getBean() problem    forum.springsource.org

TransactionProxyFactoryBean and getBean() problem Hi, i'm a newbie in spring I've a problem with TransactionProxyFactoryBean and the getBean() function. When i want to get a reference to the bean, this throws ...

28. Transaction problem with hibernate    forum.springsource.org

Transaction problem with hibernate Hi!! I have a problem with transaction management. I configured transactions with HibernateTransactionManager and Transaction interceptor: Code: ...

29. Problem with using TransactionProxyFactoryBean    forum.springsource.org

Problem with using TransactionProxyFactoryBean Hi, I am trying to use TransactionProxyFacotryBean to implement declarative transaction management, however I noticed that my inserts get executed and committed as soon as the jdbc ...

30. Problems with Transaction in Spring    forum.springsource.org

Oct 14th, 2005, 08:54 PM #1 carlos_santiago View Profile View Forum Posts Private Message Member Join Date Jul 2005 Location Cuiaba/MT - Brazil Posts 41 Problems with Transaction in Spring Hi, ...

31. Problem with TransactionProxyFactoryBean    forum.springsource.org

Problem with TransactionProxyFactoryBean I am trying to use TransactionProxyFactoryBean for declarative transaction but I am getting error when I try to cast proxy object. TranscationAOP ao = (TranscationAOP)app.getBean("TranscationAOP"); Bean declaration is ...

32. Transaction rollback problem    forum.springsource.org

Transaction rollback problem I'm using mysql DB, which I set to autocommit=0. During registrestion, a user will be added first in the users table and then in the table authority. When ...

33. Transaction problems    forum.springsource.org

Dec 28th, 2005, 08:52 AM #1 rlynn View Profile View Forum Posts Private Message Member Join Date Jul 2005 Posts 48 Transaction problems So far as I can tell, I have ...

34. Two transactions problem    forum.springsource.org

Feb 15th, 2006, 01:21 PM #1 mind View Profile View Forum Posts Private Message Junior Member Join Date Feb 2006 Posts 7 Two transactions problem My application uses Hibernate and Spring. ...

35. Problems with JTA    forum.springsource.org

Problems with JTA Hi, I can not get the JtaTransactionManager to work properly in Sun JAva Application Server 8.2 PE. In my applicationContext.xml file I have defined two datasouce references to ...

36. Transaction/ Hibernate many-to-many problem    forum.springsource.org

May 8th, 2006, 03:28 AM #1 angela View Profile View Forum Posts Private Message Member Join Date May 2006 Posts 57 Transaction/ Hibernate many-to-many problem Hi all i have a problem ...

37. Problem regarding Transaction    forum.springsource.org

Problem regarding Transaction Hi, i want to use transactions (annotations) on my service method. When i add the Declarative transaction management code in the xml file and start the server, it ...

38. Problem only after adding transactions    forum.springsource.org

Problem only after adding transactions Hi, I encountering a very strange problem. I have a method doSomething() in a java application implemented in Spring. When I run the method without putting ...

39. Problems with identity key generation when using Spring transactions with Hibernate    forum.springsource.org

Problems with identity key generation when using Spring transactions with Hibernate Hi All, I am facing a problem with identity key generation when I use Hibernate with Spring transactions. The scenario ...

40. Problems with TransactionProxyFactoryBean    forum.springsource.org

Jun 22nd, 2006, 02:29 PM #1 halcyon View Profile View Forum Posts Private Message Member Join Date Aug 2004 Posts 39 Problems with TransactionProxyFactoryBean Hi I am having a very strange ...

41. Problem with rolled back transaction    forum.springsource.org

Problem with rolled back transaction Hello I use Spring's declarative transaction management (with Hibernate 3) in my application. I have for instance : Code: public PrimaryKey createAccount(BillingAccount billingAccount) { logger.info("Beginning of ...

42. Transaction and ObjectRetrievalFailureException problem    forum.springsource.org

Jul 10th, 2006, 05:53 AM #1 osmanizbat View Profile View Forum Posts Private Message Junior Member Join Date Apr 2006 Posts 10 Transaction and ObjectRetrievalFailureException problem Hello I've a Spring MVC ...

43. Problem using TransactionProxyFactoryBean with Hibernate    forum.springsource.org

Jul 19th, 2006, 05:42 AM #1 nc_heo View Profile View Forum Posts Private Message Junior Member Join Date Nov 2005 Posts 14 Problem using TransactionProxyFactoryBean with Hibernate Hi, I'm using a ...

44. Problem With TransactionProxyFactoryBean    forum.springsource.org

Problem With TransactionProxyFactoryBean Here's my app context: Code: ...

45. Extremely weird transaction problem when using MethodInvokingJobDetailFactoryBean    forum.springsource.org

Extremely weird transaction problem when using MethodInvokingJobDetailFactoryBean For some reason, when I define the following bean in my applicationContext xml file, none of my save methods work on any of my ...

46. Problem Informix TransactionProxyFactoryBean    forum.springsource.org

Problem Informix TransactionProxyFactoryBean Hi there, my Informix SE does not support transactions. Im getting errors accessing the dao from a HibernateTemplate: Code: org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested ...

47. Long transaction problem    forum.springsource.org

Long transaction problem Hello there! I'm using the OSIVF pattern. And I have transaction demarcation for my services: ServiceA (TRANSACTION_REQUIRED) ServiceB (not wraped by transaction proxy) Ok, so my view (opens ...

48. Transaction Rollback Problem    forum.springsource.org

Transaction Rollback Problem I am using Hibernate as the persistence mechanism from Spring. Problem: I am trying to insert a record 2 times in a table and on the 2nd insert, ...

49. Another Transaction problem    forum.springsource.org

Another Transaction problem With Hibernate CR1, Hibernate EM CR2, Spring RC2, Spring Webflow 1.0 RC3 and OpenEntityManagerInView filter I'm using the JpaTransactionManager and we've been using it for awhile without problems ...

50. Store problem when activating Transactions    forum.springsource.org

Oct 13th, 2006, 09:00 AM #1 ndgroote View Profile View Forum Posts Private Message Junior Member Join Date Jun 2005 Posts 5 Store problem when activating Transactions Hi, I've been searching ...

51. Transaction problem    forum.springsource.org

Jan 16th, 2007, 04:29 PM #1 Beyond View Profile View Forum Posts Private Message Member Join Date Feb 2005 Posts 47 Transaction problem I've got a problem with transactions. Does someone ...

52. .lock problem RepositoryFactoryBean    forum.springsource.org

Feb 14th, 2007, 01:13 PM #1 mamana View Profile View Forum Posts Private Message Junior Member Join Date Feb 2007 Posts 2 .lock problem RepositoryFactoryBean Hi, I have a strange problem ...

53. problem with spring transaction    forum.springsource.org

Feb 17th, 2007, 02:45 AM #1 sunilk View Profile View Forum Posts Private Message Junior Member Join Date Feb 2007 Posts 3 problem with spring transaction Hi, i am new to ...

54. Transaction Problems    forum.springsource.org

Transaction Problems I am currently working on getting transactions to work with my system. My config.xml file looks like: <!-- JDBC TEMPLATE AND ...</p>

55. Hibernate JTA Problem    forum.springsource.org

Mar 5th, 2007, 08:46 AM #1 Darknight View Profile View Forum Posts Private Message Junior Member Join Date Aug 2006 Posts 3 Hibernate JTA Problem Hello All. I have an application ...

56. Transaction problems in Spring + JPA (TopLink)    forum.springsource.org

Mar 21st, 2007, 04:48 PM #1 fox View Profile View Forum Posts Private Message Senior Member Join Date Mar 2007 Posts 125 Transaction problems in Spring + JPA (TopLink) Hello, i've ...

57. Performance problem when adding TransactionProxyFactoryBean's    forum.springsource.org

Performance problem when adding TransactionProxyFactoryBean's I am trying out the TransactionProxyFactoryBean mechanism of transaction demarcation using the below:

58. Please help problem with row level table locking    forum.springsource.org

Please help problem with row level table locking I am trying to get a row level table lock on my mysql table; if i try to test this using the mysql ...

59. @Transactional problems    forum.springsource.org

@Transactional problems I've got a problem with @Transactional. When I use @Transactional on an interface I get: org.springframework.dao.InvalidDataAccessApiUsageE xception: Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL): Turn your Session ...

60. Problem with TransactionProxyFactoryBean    forum.springsource.org

Apr 25th, 2007, 01:03 AM #1 magoicochea View Profile View Forum Posts Private Message Junior Member Join Date Mar 2007 Posts 9 Problem with TransactionProxyFactoryBean Hello I'm trying to configure my ...

61. no transaction found problem    forum.springsource.org

May 8th, 2007, 11:53 PM #1 aquaruis View Profile View Forum Posts Private Message Member Join Date Aug 2006 Posts 30 no transaction found problem hi, i have a problem with ...

62. Transaction problem    forum.springsource.org

Transaction problem Hello! I'm new to Spring and trying to get my first examples up and running. Unfortunately, I'm having trouble getting my transaction example to work. I'm using JDO for ...

63. Still having problems with Spring managed transactions    forum.springsource.org

Jun 11th, 2007, 09:23 AM #1 merlin View Profile View Forum Posts Private Message Junior Member Join Date Jun 2007 Posts 18 Still having problems with Spring managed transactions Hello! I'm ...

64. problem transactions in child functions    forum.springsource.org

problem transactions in child functions hello, i have this : Code: class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> PROPAGATION_REQUIRED,-MyException PROPAGATION_REQUIRED,-MyException ...

65. Migration from TransactionProxyFactoryBean to Spring 2.0 transaction advice problem    forum.springsource.org

Migration from TransactionProxyFactoryBean to Spring 2.0 transaction advice problem I decided to go for Spring 2.0 transaction advice as I have quite a lot of transactional beans. So I just removed ...

66. Problem with not starting transaction    forum.springsource.org

Problem with not starting transaction Hi, I have a problem with not starting transaction. I use TransactionProxyFactoryBean and HibernateTransactionManager with PROPAGATION_REQUIRED transaction attribute (for all methods of target class), and JDBC ...

67. Problems with transaction rollback    forum.springsource.org

Problems with transaction rollback Hi all, I'm having a problem with transaction rollback. It's does not rollback after a unchecked exception that is declared in the TransactionProxyFactoryBean configuration. Let's see some ...

68. transaction/connection problem upgrading from spring 1.2.2 to 2.0.6    forum.springsource.org

transaction/connection problem upgrading from spring 1.2.2 to 2.0.6 Hello, I just tried upgrading our web application from spring 1.2.2 to 2.0.6, but I started getting strange database access errors. I did ...

69. Problem with Transaction Management in multithreaded environment.    forum.springsource.org

Aug 16th, 2007, 12:48 PM #1 sudhirshinde View Profile View Forum Posts Private Message Junior Member Join Date Aug 2007 Posts 3 Problem with Transaction Management in multithreaded environment. Hi I ...

70. Spring transactions problem: Rollback fails    forum.springsource.org

Spring transactions problem: Rollback fails Hi! I've search for problems like this in this forum and I've found some similar problems, but not the same, so, I'll be very grateful if ...

71. Transactional init-method problems    forum.springsource.org

Transactional init-method problems Greetings, guys! I've noticed very strange behaviour when added @Transactional(propagation=Propagation.REQUIRED) Spring annotation to the init method of the Spring bean. This bean is supposed to populate my DB ...

72. @Transactional problem.    forum.springsource.org

@Transactional problem. Hi all, I'm having some problems persisting some data into the database when using AOP. Below are the configuration: Code: <!-- ...</p>

73. Spring / Transaction problem, help anyone?    forum.springsource.org

Spring / Transaction problem, help anyone? hi all, i am working on an existing application which uses Spring (and JdbcTemplate for inserting data). after some heavy loads, we find out transaction ...

74. Problem with nested transactions    forum.springsource.org

Hello guys i have this code like abstract for a lot of beans libe BO or services Code:

75. Problem with transactions. Loading 18 million of data.    forum.springsource.org

Problem with transactions. Loading 18 million of data. Hi, I have recently migrated from mysql to oracle and I'm having some problems with transactions and others. One of the problems is ...

76. Transaction thoughts and problems    forum.springsource.org

Transaction thoughts and problems Hi, i have written this article/thread just 5 minutes ago, but was logged out before committing it.... Committing seems to be a good buzzword to start here. ...

77. Rollback problem    forum.springsource.org

Dec 13th, 2007, 06:34 AM #1 jumpjet View Profile View Forum Posts Private Message Junior Member Join Date Dec 2007 Posts 3 Rollback problem I have problem testing rollback behaviour in ...

78. @Transactional and Hibernate Transaction problem    forum.springsource.org

@Transactional and Hibernate Transaction problem I am trying to use declarative transaction management in my DAO code using @Transactional annotation. Unfortunately it fails with the error: org.hibernate.HibernateException: saveOrUpdate is not valid ...

79. problem with spring transactions    forum.springsource.org

problem with spring transactions I am facing some problem with spring transactions .I am inserting the data in two tables whose relationship is one-to-many. Code: StudentDetails stDetails=new StudentDetails(); stDetails.setSid(12); stDetails.setSname("Naveen"); stDetails.setCity("Hyd"); ...

80. Transaction scheme problem    forum.springsource.org

Transaction scheme problem I have the following problem: Im looking for a transaction scheme that allows me to do the following thing. I have a transaction that executes things and inside ...

81. Problem with JTA transaction configuration    forum.springsource.org

Problem with JTA transaction configuration I 've applied JTA transactions with JOTM to my Spring based application. I want transactions to be applied to my application controllers. I have tried with ...

82. Transation rollback problem    forum.springsource.org

Transation rollback problem hi folks, i am using spring,jpa in weblogic server in my project.i am getting a strange rollback exception.it is a multithreaded program.Rv messaging system is used as messaging ...

83. Transaction problem    forum.springsource.org

By the way, I would also like to say that I am using an OpenSessionInViewFilter in my application. Could it be reason why my code has unexpected behavior? Thanks.

84. Transactions : rollback problem    forum.springsource.org

Transactions : rollback problem Hello, I have some problem with the @Transactionnal annotation. This is my class : Code: @Bean(name="testTransaction") public class TestTransaction { private ObjectService objectService; public void test() throws ...

85. Transaction problems(JSF+Spring+Hibernate)    forum.springsource.org

Transaction problems(JSF+Spring+Hibernate) Hi! I use simple annotanion-driven declarative transactions in my code and resolve my service bean with the help of DelegatingVariableResolver defined in faces-config.xml. For not getting in troubles with ...

86. Problem with @Transactional    forum.springsource.org

I have been searching a lot on this, but i can't figure out what i am doing wrong. So i have the method Code: @Transactional public void save(Company company){ em.persist(company); } ...

87. Transaction problem.    forum.springsource.org

Hey, I need some help for following Transaction: masterBO.businessmethod() throws TestException{ dao1.dauMehtod1(); // Rollback dao2.dauMehtod2(); // NO ROLLBACK dao3.dauMehtod3(); // Rollback dao4.dauMehtod4(); // Rollback throw new Exception(); } If an Exception ...

88. Problem with @Transactional and nested methods    forum.springsource.org

Problem with @Transactional and nested methods Im using the AOP @Transactional defined in an interface class. Interface: @Transactional(readOnly = false, propagation = Propagation.REQUIRED) public boolean deleteXyz(); @Transactional(readOnly = false, propagation = ...

89. problem with spring transactions    forum.springsource.org

problem with spring transactions I am using springtransactions with hibernate(hibernatetemplate). i configured "org.springframework.transaction.interceptor.Trans actionProxyFactoryBean" in spring specific xml file. In my update method i am inserting some data into one table ...

90. lazyInitializeEception problem and transactional    forum.springsource.org

lazyInitializeEception problem and transactional hi, I have design my web app by spring mvc like this @controller public class Uploader { ... @RequestMapping(method = Post) public String processSubmit() //should be transactional ...

91. transaction binding problem    forum.springsource.org

transaction binding problem Hi I have a question on how these transactions are implemented. I am able to make a method transactional through annotations and through adding in my ...

92. Hibernate Spring - problem with transaction    forum.springsource.org

Apr 27th, 2008, 03:18 PM #1 duce74 View Profile View Forum Posts Private Message Junior Member Join Date Apr 2008 Posts 2 Hibernate Spring - problem with transaction Hello, I use ...

93. Transaction Management Problem    forum.springsource.org

Transaction Management Problem Hi All I am facing a problem in implementing transaction management. My Use case is. 1. User performs some action on the screen and clicks on save. Depending ...

94. transactions and write behind problem    forum.springsource.org

transactions and write behind problem I believe I'm getting constraint exception because of the order that hibernate seems to be executing DML at the end of unit of work. In a ...

95. Transaction problems    forum.springsource.org

Hello, I tried almost everything and I can't get the annontation-based transactions to work. My current setup is: Tomcat 6, Spring 2.5.5,OpenJPA 1.1.0 and Struts 2. I'm using the ReflectionalLoadTimeWeaver. What ...

96. no rollback in transaction problem    forum.springsource.org

Jul 29th, 2008, 12:18 PM #1 nean View Profile View Forum Posts Private Message Member Join Date Jun 2007 Posts 30 no rollback in transaction problem Hi, I'm using JPA managed ...

97. Is it a problem declaring business classes @Transactional?    forum.springsource.org

It could cause problems if you use a propagation of REQUIRES_NEW. If the framework rolledback and tried to reprocess you would likely get some type of PK Violation.....the same issues would ...

98. Transactional Problem    forum.springsource.org

Transactional Problem Hi, I have set up Spring + JPA (using Hibernate) in Tomcat. I am using the PersistenceContext annotation to inject a shared entity manager instance, and the Transactional annotation ...

99. Problem with Declaratvie transaction    forum.springsource.org

Problem with Declaratvie transaction Hi, i'm using spring with hibernate support for declarative transactions... now i have 2 service classes which are involved in declarative transactions. Service1. createData()--having ROPAGATION_REQUIRES_NEW Service2. updareData()--having ...

100. Problem with transaction management by spring    forum.springsource.org

Oct 6th, 2008, 03:52 PM #1 kokkonen View Profile View Forum Posts Private Message Junior Member Join Date Aug 2007 Posts 14 Problem with transaction management by spring Hello I have ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.