Hibernateは内部を公開しないため、公開APIで探しているものが見つかりません。しかし、あなたはHibernateのインタフェースの実装クラスでは、あなたの答えを見つけることができます。 オブジェクトがセッションに存在する場合(http://code.google.com/p/bo2/source/browse/trunk/Bo2ImplHibernate/main/gr/interamerican/bo2/impl/open/hibernate/HibernateBo2Utils.javaから取られた)この方法は教えてくれます:
public static Object getFromSession
(Serializable identifier, Class<?> clazz, Session s) {
String entityName = clazz.getName();
if(identifier == null) {
return null;
}
SessionImplementor sessionImpl = (SessionImplementor) s;
EntityPersister entityPersister = sessionImpl.getFactory().getEntityPersister(entityName);
PersistenceContext persistenceContext = sessionImpl.getPersistenceContext();
EntityKey entityKey = new EntityKey(identifier, entityPersister, EntityMode.POJO);
Object entity = persistenceContext.getEntity(entityKey);
return entity;
}
をもう少しドリルダウンした場合、あなたは意志PersistenceContextの唯一の実装がorg.hibernate.engine.StatefulPersistenceContextであることを見てください。 このクラスには、次のコレクションがあります。
// Loaded entity instances, by EntityKey
private Map entitiesByKey;
// Loaded entity instances, by EntityUniqueKey
private Map entitiesByUniqueKey;
// Identity map of EntityEntry instances, by the entity instance
private Map entityEntries;
// Entity proxies, by EntityKey
private Map proxiesByKey;
// Snapshots of current database state for entities
// that have *not* been loaded
private Map entitySnapshotsByKey;
// Identity map of array holder ArrayHolder instances, by the array instance
private Map arrayHolders;
// Identity map of CollectionEntry instances, by the collection wrapper
private Map collectionEntries;
// Collection wrappers, by the CollectionKey
private Map collectionsByKey; //key=CollectionKey, value=PersistentCollection
// Set of EntityKeys of deleted objects
private HashSet nullifiableEntityKeys;
// properties that we have tried to load, and not found in the database
private HashSet nullAssociations;
// A list of collection wrappers that were instantiating during result set
// processing, that we will need to initialize at the end of the query
private List nonlazyCollections;
// A container for collections we load up when the owning entity is not
// yet loaded ... for now, this is purely transient!
private Map unownedCollections;
// Parent entities cache by their child for cascading
// May be empty or not contains all relation
private Map parentsByChild;
だから、あなたがStatefulPersistenceContextへのPersistenceContextをキャストされて何をする必要があるか、そしてあなたが望むプライベートコレクションを取得するためにリフレクションを使用して、それを繰り返します。
デバッグコードでのみ行うことを強くお勧めします。これは公開されたAPIではなく、新しいリリースのHibernateによってブレーキをかけることができます。
ありがとうございます;問題が次回発生したときに多くの助けになります。 ;) –