• 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 core

 
Ranch Hand
Posts: 71
3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've got two questions.

Where can I download the latest core hibernate library (i.e. hibernate without EJB3 or JPA support)?

I'd like to use only hibernate's proprietary features.

Why does hibernate provide two different implementations for the javax.persistence.EntityManager interface?
  • org.hibernate.jpa.internal.EntityManagerImpl
  • org.hibernate.ejb.EntityManagerImpl


  • Am I correct in assuming that the implementation in the org.hibernate.jpa.internal package is hibernate's support for the JPA specification and the implementation in the org.hibernate.ejb package is hibernate's support for the EJB3 specification?

     
    Ranch Hand
    Posts: 514
    1
    Eclipse IDE Java
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    You can easily download latest hibernate distribution zip from http://hibernate.org/orm/downloads/.
    Click on Stable 4.3.5.Fianl button.

    If you want only hibernate-core then you need hibernate-core-4.3.5.Final.jar.
    With maven you can download this jar with:

    JBoss repository is:
     
    Don't get me started about those stupid light bulbs.
    reply
      Bookmark Topic Watch Topic
    • New Topic