I have

private EntityManager em;

public List getAll(DetachedCriteria detachedCriteria)   {

    return detachedCriteria.getExecutableCriteria( ??? ).list();
}

How can i retrieve the session if am using entitymanager or how can i get the result from my detachedcriteria ? Thank you

link|improve this question

79% accept rate
feedback

2 Answers

up vote 7 down vote accepted

To be totally exhaustive, things are different if you're using a JPA 1.0 or a JPA 2.0 implementation.

JPA 1.0

With JPA 1.0, you'd have to use EntityManager#getDelegate(). But keep in mind that the result of this method is implementation specific i.e. non portable from application server using Hibernate to the other. For example with JBoss you would do:

org.hibernate.Session session = (Session) manager.getDelegate();

But with GlassFish, you'd have to do:

org.hibernate.Session session = ((org.hibernate.ejb.EntityManagerImpl) em.getDelegate()).getSession(); 

I agree, that's horrible, and the spec is to blame here (not clear enough).

JPA 2.0

With JPA 2.0, there is a new (and much better) EntityManager#unwrap(Class<T>) method that is to be preferred over EntityManager#getDelegate() for new applications.

So with Hibernate as JPA 2.0 implementation (see 3.15. Native Hibernate API), you would do:

Session session = entityManager.unwrap(Session.class);
link|improve this answer
entityManager.unwrap(Session.class); what is Session in Session.class? is it an import? – Thang Pham Jan 13 '11 at 9:19
feedback

Hibernate manual

See point 15.8

And you always can get the Session:

Session session = entityManager.unwrap(Session.class);
link|improve this answer
Thanks, it works – storm_buster Nov 10 '10 at 19:49
entityManager.unwrap(Session.class); what is Session in Session.class? is it an import? – Thang Pham Jan 13 '11 at 9:21
Its import org.hibernate.Session; – storm_buster Jan 30 at 18:59
feedback

Your Answer

 
or
required, but never shown

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