• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Hibernate with Google web toolkit

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Any body please suggest how can I use Hibernate with GWT, where should I place my .hbm file (in client side or server side) and pojos.

let me know the folder structure.

Thanks
Vasu
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The exact same way you would with JSF, or JSP/Servlets, or EJB3, or Swing. You layer your application so that you have at least a UI layer, a DAO layer, and a Data Model layer. In all web frameworks, the work is 99% of the time on the server side. So the code will reside on the server side end. As far as dir structure. keep it modularized.

In terms of where to put the .hbm files it is also the same in all Hibernate apps.

Good Luck

Mark
 
reply
    Bookmark Topic Watch Topic
  • New Topic