• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Challenge ! Hibernate, Spring and the Transactions...

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello @ all !

I'm facing a problem with Hibernate, Spring and the transactions : "[save|createQuery] is not valid without active transaction". I'm using a datasource configured with Tomcat, and I want to use the AOP for the transaction management :


All things seems to be good in the log :


and if I call an update method on the session, I get an exception :

.. results in ..


Moreover, the transaction that seemed to be opened before just rollbacks !!


Any idea on this "double transaction" ?
[ December 30, 2008: Message edited by: Benett Corp ]
 
Benett Corp
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry for the smileys in the previous codes

By the way, when I replace the "save" call by a "throw new UnsupportedOperationException()", the rollbak seems to be processed...

Something important : when I use "session.beginTransaction()" and "session.getTransaction.commit()", everything works. owever, this is not the way i want to use transactions...

Anyone has already done some jobs about these transactions (spring + hibernate) ?
[ December 30, 2008: Message edited by: Benett Corp ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic