Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Modifier le lazy loading avec Hibernate
Article publié le 28/04/2010 12:08:36Généralités
Cet exemple fonctionne avec la version Hibernate 3.5.1-Final.
Il s’agit d’un aide mémoire pour moi, mais il peut servir à d’autres...
Procédure
RemoteLazyLoadCollectionCallback
- Dans org.hibernate.collection , ajouter le package callback
- Dans org.hibernate.collection.callback, ajouter la classe suivante :
Code Java (11 lignes)
- package org.hibernate.collection.callback;
- import org.hibernate.collection.PersistentCollection;
- import org.hibernate.engine.SessionImplementor;
- public interface RemoteLazyLoadCollectionCallback {
- PersistentCollection lazyLoad(SessionImplementor session,
- PersistentCollection collection);
- }
AbstractPersistentCollection
- Dans org.hibernate.collection, ouvrir la classe AbstractPersistentCollection.
-
Ajouter un membre statique :Code Java (9 lignes)
- private static RemoteLazyLoadCollectionCallback remoteLazyLoadCollectionCallback;
- /**
- * @param remoteLazyLoadCollectionCallback the remoteLazyLoadCollectionCallback to set
- */
- public static synchronized void setRemoteLazyLoadCollectionCallback(
- RemoteLazyLoadCollectionCallback remoteLazyLoadCollectionCallback) {
- AbstractPersistentCollection.remoteLazyLoadCollectionCallback = remoteLazyLoadCollectionCallback;
- }
- Ajouter un getter :
Code Java (3 lignes)
- private boolean isRemote() {
- return remoteLazyLoadCollectionCallback != null;
- }
- Dans la méthode protected boolean readSize(), ajouter au début
Code Java (3 lignes)
- if (isRemote()) {
- initialize(true);
- }
Faire de même pour toutes les méthodes readxxx. - Modifier la méthode protected final void initialize(boolean writing) comme ceci :
Code Java (15 lignes)
- protected final void initialize(boolean writing) {
- if (!initialized) {
- if (isRemote()) {
- remoteLazyLoadCollectionCallback.lazyLoad(session, this);
- setInitialized();
- } else {
- if (initializing) {
- throw new LazyInitializationException(
- "illegal access to loading collection");
- }
- throwLazyInitializationExceptionIfNotConnected();
- session.initializeCollection(this, writing);
- }
- }
- }
RemoteLazyLoadProxyCallback
- Dans org.hibernate.proxy , ajouter le package callback
- Dans org.hibernate.proxy.callback, ajouter la classe suivante :
Code Java (12 lignes)
- package org.hibernate.proxy.callback;
- import java.io.Serializable;
- import org.hibernate.engine.SessionImplementor;
- public interface RemoteLazyLoadProxyCallback {
- }
AbstractLazyInitializer
- Dans org.hibernate.proxy, ouvrir la classe AbstractLazyInitializer
- Ajouter un membre statique :
Code Java (14 lignes)
- private static RemoteLazyLoadProxyCallback remoteLazyLoadProxyCallback;
- /**
- * @param remoteLazyLoadProxyCallback the remoteLazyLoadProxyCallback to set
- */
- public static synchronized void setRemoteLazyLoadProxyCallback(
- RemoteLazyLoadProxyCallback remoteLazyLoadProxyCallback) {
- AbstractLazyInitializer.remoteLazyLoadProxyCallback = remoteLazyLoadProxyCallback;
- }
- Ajouter un getter :
- private boolean isRemote() {
- return (remoteLazyLoadProxyCallback != null);
- }
- Ajouter un getter :
Code Java (3 lignes)
- private boolean isRemote() {
- return (remoteLazyLoadProxyCallback != null);
- }
- Modifier la méthode public final void initialize() comme ceci :
Code Java (26 lignes)
- public final void initialize() throws HibernateException {
- if (!initialized) {
- if (isRemote()) {
- setImplementation(remoteLazyLoadProxyCallback.lazyLoad(session,
- entityName, id));
- } else {
- if ( session==null ) {
- throw new LazyInitializationException("could not initialize proxy - no Session");
- }
- else if ( !session.isOpen() ) {
- throw new LazyInitializationException("could not initialize proxy - the owning Session was closed");
- }
- else if ( !session.isConnected() ) {
- throw new LazyInitializationException("could not initialize proxy - the owning Session is disconnected");
- }
- else {
- target = session.immediateLoad(entityName, id);
- initialized = true;
- checkTargetState();
- }
- }
- }
- else {
- checkTargetState();
- }
- }
Exemple d’appel dans le client
Code Java (4 lignes)
AbstractLazyInitializer .setRemoteLazyLoadProxyCallback(new MeatClientLazyLoadProxyCallback()); AbstractPersistentCollection .setRemoteLazyLoadCollectionCallback(new MeatClientLazyLoadCollectionCallback());
Exemples d'implémentations des callbacks
Code Java (16 lignes)
public class MeatClientLazyLoadProxyCallback implements RemoteLazyLoadProxyCallback { // Thread.dumpStack(); id); if(result == null){ LogFactory.getLog(getClass()).error(entityName+" - "+ id +" is NULL ‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹"); } return result; } }
Code Java (41 lignes)
public class MeatClientLazyLoadCollectionCallback implements RemoteLazyLoadCollectionCallback { public PersistentCollection lazyLoad(SessionImplementor session, PersistentCollection collection) { PersistentCollection result = ServiceLocator.getService( LazyInitFacade.class).initializeCollection(collection, true); Field field; if (collection instanceof PersistentSet) { field = ReflectionUtils.findField(PersistentSet.class, "set", } else if (collection instanceof PersistentBag) { field = ReflectionUtils.findField(PersistentBag.class, "bag", } else if (collection instanceof PersistentList) { field = ReflectionUtils.findField(PersistentList.class, "list", } else if (collection instanceof PersistentMap) { field = ReflectionUtils.findField(PersistentMap.class, "map", } else { .getClass() + " is not yet supported")); } "storedSnapshot"); if (snapshot != null) { ReflectionUtils.makeAccessible(snapshot); if (o == null) { } } ReflectionUtils.makeAccessible(field); ReflectionUtils.setField(field, collection, result); return result; } }
Un article de StephModifié 1 fois. (dernière modification le 03/05/2010 13:22:48 par Steph)
Source : indéterminée
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 13/09/2004 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/ast-rf-455.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.