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 !