• 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

Hibernate Table dividing Problem

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have an issue raised due to the splitting of a table into two

Present Scenario:-I have a table mapped to an Hibernate hbm file and a class

New Requrement:-Due to some reasons the database team divided the table into two new tables with some common columns but with same primary key.So ideal case ie we need to write two new HBM files mapped to two new POJO classes.But if we do this we need to change a number of classes .
Is there any new way so that the same old class is used with the new requirement resulting in less number of changes in the code


 
Ranch Hand
Posts: 1374
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you haven't divided UI also into two, What I would suggest keep the same JavaBean(now you can say DTO) to map with your UI. But you have to have two Java Beans for two tables. Write one Service method to populate those beans and persist them.

Does this sound good?
 
aditya parvatam
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The UI or java bean is not my problem
My problem is can i map the old HBM file to newly splitted two tables or is there any technique in hibernate so that the same old mapped class (Before splitting) is used to map the new requirement also
 
reply
    Bookmark Topic Watch Topic
  • New Topic