Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Quand un proxy n’est-il pas un proxy?
Article publié le 03/05/2011 11:56:22Si nous utilisons le lazy loading avec Hibernate, nous avons des objets proxy, dont certaines propriétés seulement sont chargées, les autres étant chargées plus tard quand nous en aurons besoin.
Il est facile de déterminer si un objet est de type proxy, par l’instruction suivante
Code java5 (3 lignes)
/*...*/ if(proxyCandidate instanceof HibernateProxy) /*...*/
Par contre, nous rencontrons de nombreux exemples qui utilisent ce type d’instruction pour déterminer si un objet est de type proxy, puis de l’initialiser si c’est le cas. Attention, par défaut ce type de raisonnement est faux car un proxy reste un proxy même une fois qu’il est initialisé (il implémente toujours l’interface).
Il est donc préférable de tester s’il est initialisé, de la manière suivante
Code java5 (3 lignes)
/*...*/ proxy.getHibernateLazyInitializer().isUninitialized() /*...*/
Voici un exemple de méthode qu’il est possible d’invoquer au sein de tests unitaires
Code java5 (16 lignes)
/*...*/ if (proxyCandidate != null) { HibernateProxy proxy = (HibernateProxy) proxyCandidate; Assert.assertTrue( "%s object %s be initialized at this time", clazz.getSimpleName(), proxyExpected ? "must not" : "must"), proxyExpected == (proxy.getHibernateLazyInitializer().isUninitialized())); } else "MissionTest.testProxy: %s is null and could not be tested", clazz.getSimpleName())); } /*...*/
Remarques presque hors sujet
Type du proxy
Il existe certains moyens pour s’assurer d’avoir l’implémentation réelle de l’objet, comme ceci :
Code java5 (13 lignes)
public static ‹T› T initializeAndUnproxy(T entity) { if (entity == null) { throw new } Hibernate.initialize(entity); if (entity instanceof HibernateProxy) { entity = (T) ((HibernateProxy) entity).getHibernateLazyInitializer() .getImplementation(); } return entity; }
Et dans ce cas, un proxy n’est plus un proxy :-)
Dangers du proxy
Quand nous utilisons le lazy-loading, nous devons en tenir compte dans notre modèle (la partie indépendante du système de persistance), par exemple dans le cas de la méthode equals, si nous comparons sur des membres qui risquent d’être nulls dans le cas d’un proxy.
Un article de StephModifié 1 fois. (dernière modification le 03/05/2011 11:57:37 par Steph)
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-466.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.