Is there a way for getting and using an existing (open) transaction ?

I have an application using JPA/Hibernate that inserts some data. Within the session (and so the transaction), I want to generate some jasper reports from another server. Jasper report uses its own query for getting data. But needed data are not yet commited.

So that's why I want jasper server get the transaction opened by JPA/Hibernate (with an id by example ?).

Thanks !

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You need to change the connection's transaction isolation level to one of the values described here.

In Hibernate this is done in the session configuration by specifying a hibernate.connection.isolation as described here.

link|improve this answer
Thank you ! It seems to be exactly what I need. I will try that. – Albataur Aug 1 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.