• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

automate convert tool for javabean to hibernet mapping files.

 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am creating javabeans. and that beans are working in hibernet. In that, hbm files will be compusory for each bean. automate convert tool for javabean to hibernet mapping files.what is that tool?

Regards,
D S
 
Ranch Hand
Posts: 471
Mac OS X Hibernate Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello D,

First of all, I believe that this question should go to the object relational mapping forum not here.

Secondly, the myeclipse plugin for eclipse can generate hibernate mapping files, java beans and daos for you automatically from your database schema, but this is a proprietary software that costs between 32 and 50 USD a year. You can also use middlegen to generate hibernate mappings from database, and hbm2java from the "Hibernate Extensions" to generate the beans, or put xdoclet annotations in your beans' javadoc, and use xdoclet to generate hibernate mappings, then use hbm2ddl from hibernate tools to generate database DDL. You can find more here
 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

There is lot of tools.One is Middlegen

Regards,
Sitaraman
 
reply
    Bookmark Topic Watch Topic
  • New Topic