UnexpectedRollbackException « Exception « Spring Q&A





1. UnexpectedRollbackException    forum.springsource.org

UnexpectedRollbackException I have the following strange scenario with spring's transaction management: I have method A which calls method B which calls method C, each of them in a different class. Methods ...

2. UnexpectedRollbackException with try-catch block ?    forum.springsource.org

UnexpectedRollbackException with try-catch block ? i ve a weird problem with spring 3.0.3.RELEASE.. Code: @Transactional(readOnly=false) @Service public class MyServiceImpl implements MyService { ..... create/delete operations @Override @Transactional(readOnly = true) public boolean ...

3. UnexpectedRollbackException on read-only method    forum.springsource.org

Is your object that you are retrieving correctly mapped? I wonder if your mapping is generating invalid SQL that the database is throwing out? I would suggest looking at logging/profiling on ...

4. UnexpectedRollbackException is somewhat unexpected to me    forum.springsource.org

UnexpectedRollbackException is somewhat unexpected to me Hi together, My Testcase is a outer and an inner service, advised by spring using jta and atomikos. The outer service starts the transaction, the ...

5. UnexpectedRollbackException    forum.springsource.org

Dec 16th, 2005, 07:04 AM #1 viniciuscarvalho View Profile View Forum Posts Private Message Senior Member Join Date Jun 2005 Posts 129 UnexpectedRollbackException Hello there! I've created a simple transaction example ...

6. UnexpectedRollbackException <-> DataIntegrityViolationException    forum.springsource.org

I'm testing Spring 2.0 with resource_local transactions and @Transactional annotations. The underlying database is Oracle 10g. Using plain Hibernate3.2 DAOs, unique constraint (and similar) violations result in DataIntegrityViolationException's. However, using plain ...

7. HandlerExceptionResolver trumped by UnexpectedRollbackException    forum.springsource.org

HandlerExceptionResolver trumped by UnexpectedRollbackException I have HandlerExceptionResolver set up to catch exceptions and forward to an error page. Works fine for non-DAO exceptions. However, when a DAO exception occurs, it bubbles ...

8. Why this "UnexpectedRollbackException"??    forum.springsource.org

Why this "UnexpectedRollbackException"?? When I run my application, through a exception like follows: ----------------------------------------------------------- org.springframework.transaction.UnexpectedRollback Exception: JPA transaction unexpectedly rolled back (maybe marked rollback-only after a failed operation); nested exception is ...

9. UnexpectedRollbackException by running unit test    forum.springsource.org

Jun 7th, 2007, 03:59 PM #1 thomas2004 View Profile View Forum Posts Private Message Senior Member Join Date Jun 2007 Posts 159 UnexpectedRollbackException by running unit test I wrote an UnitTest ...





10. UnexpectedRollbackException    forum.springsource.org

UnexpectedRollbackException I'm getting an UnexpectedRollbackException, and I don't know why, so I was hoping someone here may have seen it before. The following is a snippet of my stack trace: Code: ...

11. UnexpectedRollbackException    forum.springsource.org

UnexpectedRollbackException One of my DAO classes is throwing a DataAccessException. In this case, not finding a row to return is totally normal, but I don't want to transaction to roll back. ...

12. UnexpectedRollbackException instead of MyException is thrown when using AOP    forum.springsource.org

UnexpectedRollbackException instead of MyException is thrown when using AOP Hi, I've tried 2 differents configs for managing tx in my app The first one is fully parametered with annotations, i.e on ...

13. UnexpectedRollbackException in commit method of AbstractPlatformTransactionManager    forum.springsource.org

UnexpectedRollbackException in commit method of AbstractPlatformTransactionManager Am wondering about the usage of UnexpectedRollbackException which is being thrown in the commit method of AbstractPlatformTransactionManager, which doesn't seem to be logical, correct me ...

14. UnexpectedRollbackException when running JUnit    forum.springsource.org

Jan 6th, 2009, 09:21 AM #1 cuinl View Profile View Forum Posts Private Message Junior Member Join Date Jan 2009 Posts 6 UnexpectedRollbackException when running JUnit Hi All, I'm getting the ...

15. UnexpectedRollbackException    forum.springsource.org

UnexpectedRollbackException I'm getting an UnexpectedRollbackException in a unit test and I'm a little confused as to why. I'm using Spring 2.5.6 with iBATIS 2.3.4, Unitils 2.2 and JUnit 4 on PostgreSQL ...

16. UnexpectedRollbackException    forum.springsource.org

UnexpectedRollbackException Hi, I am having a weird situation. I am receiving the below error message when I try to save a domain object. This same code is deployed in 3 different ...





17. UnexpectedRollbackException after upgrade to Spring 2.5.6    forum.springsource.org

UnexpectedRollbackException after upgrade to Spring 2.5.6 I am trying to upgrade to Spring 2.5.6 from Spring 2.0.8 so that I can get BlazeDS integration. Before the upgrade everything worked fine but ...

18. UnexpectedRollbackException    forum.springsource.org

Hi, I have this code: Code: @Transactional public class ServiceA implements A { public Representation methodA() { try { serviceB.methodB() } catch (Throwable t) { return convertToRepresentation(t); } ... } } ...

19. UnexpectedRollbackException    forum.springsource.org

Nov 11th, 2010, 01:50 PM #1 pgondi View Profile View Forum Posts Private Message Member Join Date Jan 2008 Posts 58 UnexpectedRollbackException I have a batch job that does the following: ...