解决方法
Does anyone know how I can do the equivalent of this in hibernate (…) with JPA?
JPA 1.0没有相同的效果,所以如果你坚持使用JPA 1.0,你必须使用Hibernate的API:从EntityManager获取会话并使用Session#getIdentitifier(Object)
.
例如,使用JBoss(yes,getDelegate()是not portable):
org.hibernate.Session session = (Session)manager.getDelegate(); session.getIdentifier(myEntity);
如果您使用JPA 2.0,则使用axtavt建议的PersistenceUnitUtil#getIdentity(Object)
.但JPA 1.0中不提供.