-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: Removing Hibernate Completely From POJO
PostPosted: Fri May 08, 2009 6:32 am 
Newbie

Joined: Fri Feb 20, 2009 6:25 am
Posts: 10
Hello all,

I am working on a project that includes GWT and Hibernate.

If I am not wrong, Hibernate doesn't leave our beans mere a POJO. It just completely changes our beans if we see it by refactoring, most probably when the bean is not completely loaded, it becomes instance of some MyBean$$EnhancerByCGLIB class. So when we try to send this bean to GWT client, that bean is no more IsSerializable. So as a temporary solution, I have prepared one convertor using refactor that converts my Hibernate bean to simple IsSerializable kind of POJO. But as project is growing, issues are rising and I need to enhance the convertor for copying object graph.

So I want to know that if anyone has faced the same issue earlier and is there any stable solutions for this issue. I came across one technology called "Hibernate4GWT". I didn't get time to try it out. But its documentation says that it supports GWT 1.4 and 1.5 version. so again want to know that what if I am using GWT 1.6.

Looking for solution as soon as possible..

Thanks in advance

_________________
Thanks & Regards,

Vishal Shukla


Top
 Profile  
 
 Post subject: Re: Removing Hibernate Completely From POJO
PostPosted: Fri May 08, 2009 9:49 am 
Beginner
Beginner

Joined: Tue Mar 10, 2009 11:50 pm
Posts: 23
Hi Vishal,

We have used hibernate and GWT in the project and we faced the exact same problem. We had annotated hibernate mappings in our Hibernate POJO's and couldn't use them at the GWT client side at all. So we had equivalent set of client side POJO's and used BeanConverter of spring framework to convert GWT Server side POJO's to GWT Client side POJO's

I would like you to suggest you below options

1. The whole idea of separating GWT Server side with GWT Client side is at the server side you compute whatever data model you need but pass only the required data to the GWT Client (since most of them are Async RPC Ajax calls), So try to pass the data to the GWT client side layer via JSON, XML etc other formats which makes data loading faster. If you pass the server side POJO's as is, GWT client side will convert them to equivalent data notations in javascript causing performance overhead

2. Based on our experience in the project, its better to have different set of POJO's for GWT Client and Server layer, coz you may need additional data to be displayed at the client side for which its not good to always modify your domain objects (which is one-to-one mapping with your db)

3. Try DWR (http://directwebremoting.org/)

_________________
Cheers,

Vinod
We act as though comfort and luxury were the chief requirements of life, when all that we need to make us happy is something to be enthusiastic about


Top
 Profile  
 
 Post subject: Re: Removing Hibernate Completely From POJO
PostPosted: Tue May 12, 2009 9:12 pm 
Newbie

Joined: Fri Nov 16, 2007 1:25 pm
Posts: 2
We do this in Terracotta's reference application Examinator: http://www.terracotta.org/web/display/o ... ementation

We made a specialized library called "Pojoizer" to strip the Hibernate stuff from POJOs returned from Hibernate. My recollection on the subject is that there are 1 or 2 blogs that demonstrate the technique, and one or two libraries that do as well.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.