I have hibernate pojo class A { B b ; some other properies} with lazy= true for class B. When i get object A, B is not loaded and hibernate returns its proxy. When i pass this object to another module, that module traverse each and every objects in A and when it encounter B.getXXX it throws LazyInitialization exception. In this particular case, I do not want to load class B as it is not required. Is there any way when i call methods on B it either return null or turn proxy of B into real object B so that module doesn't throw LazyInitialization error. I cannot change class B getter,setter as it common class and use by many other classes.
|
feedback
|
|
If I understand your question, you're retrieving an object A with a lazy association to B. However, this association is not initialized, and you find that other modules are throwing exceptions because B is actually used. So it is required in some way. You want to either
The reason why you're getting Another option you could apply would be to initialize
Of course, you could always force initialization of Also, you may find the answers to this question may be useful: hibernate: LazyInitializationException: could not initialize proxy | ||||
|
feedback
|
|
Actually, you have a few option. 1) Make A->B relation EAGER. 2) You are getting 3) If you are talling about WEB environment, there are a pattern called Open Session in view. which keeps your Hibernate session open till your HTTP Request is alive. I you can read more about it here. I think it will be useful for you to read it. | |||
|
feedback
|
|
Don't send the entities to other modules when the session is closed. If these other module is executed in the same Application Domain as the session, keep the session open when calling the module and close it when it returns. If these module is not in the same AppDomain, if you need some kind of serialization to send the objects or if it is called asynchronously, I would use a DTO. Exposing the entities outside of the server (I don't know if this is the case here) is a bad practice for several reasons. Ayende Rahien calls it the Stripper Pattern. | |||
feedback
|
|
Thanks for all your suggestion. My application have layered architecture. Service->Manager->Dao. Hibernate session closes after manager. Other module interacts only through Service. Opening hibernate session till request complete is not an option for me. I also do not want to hit database as it is not necessary that properties of B are populated. I just want to replace hibernate proxy with real object so that anyone who is using service do not face any problem. I found a utility at http://svn.rhq-project.org/repos/rhq/branches/HEIKO-EXP/modules/enterprise/server/safe-invoker/src/main/java/org/rhq/enterprise/server/util/HibernateDetachUtility.java which exactly does what i want. It inspect object and replace hibernate proxy with real object. I need to customize following things in above utility 1. Change instances of classname from org.rhq to my package structure. 2. They expect name of identity field in pojo is "id". I change it to use those property which has annotation of javax.persistence.Id. Basic testing with above changes is done and it is working fine. I just need to test whole application with various scenario so that it is working in all scenario. | |||
|
feedback
|