• 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

please guide me in priotizing what to learn next in hibernate learning path

 
Ranch Hand
Posts: 2925
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have been learning hibernate and practising it. I started with inserting data into database and retrieving using hibernate. Next I learnt mapping. To practice it I created an application with Categories and products such that when user clicks on categories, the products corresponding to the category are displayed. I did this using hibernate one to many mapping between Category table and Product table. (using annotations). Hibernate has a lot to learn but those one by one only based in priority. What should I learn in hibernate next? Any guidance regarding this will be helpful.

thanks.
 
Rancher
Posts: 989
9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There isn't much else to it to be honest. Have you tried using the Criteria API for creating queries? You could learn that next.

P.S hibernate is an implementation of the JPA specification. So you can get lots done without using any hibernate specific classes/annotations and just using JPA spec classes. That way you are not tied to any particular implementation. What could be interesting to learn is what things you can do using hibernate specific classes/configurations that you can't do with JPA.
 
Monica Shiralkar
Ranch Hand
Posts: 2925
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks. There are a lot of things to learn in hibernate but I want to keep learning one by one based on priority and learn those things first which are the most important ones to learn.
 
Do not set lab on fire. Or this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic