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/)