Jump to content

Hibernate (framework): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m →‎External links: fix broken link
Line 43: Line 43:


== External links ==
== External links ==
{{linkfarm}}
*[http://www.hibernate.org Hibernate Home Page]
*[http://www.hibernate.org Hibernate Home Page]
*[http://sourceforge.net/projects/hibernate Hibernate Sourceforge Summary]
*[http://sourceforge.net/projects/hibernate Hibernate Sourceforge Summary]
Line 48: Line 49:
*[http://www.visualbuilder.com/viewpages.php?art_id=32589&pageorder=2 Learn Hibernate Tutorial] Learn Hibernate with a worked code example and videos.
*[http://www.visualbuilder.com/viewpages.php?art_id=32589&pageorder=2 Learn Hibernate Tutorial] Learn Hibernate with a worked code example and videos.
*[http://www.gloegl.de/5.html The Road to Hibernate] A learn-by-doing tutorial on the basics of Hibernate.
*[http://www.gloegl.de/5.html The Road to Hibernate] A learn-by-doing tutorial on the basics of Hibernate.
*[http://freejavalectures.googlepages.com/Java_III_Lecture_1_Hibernate_part1.pps Easy Hibernate Tutorial/Lecture] Full of examples.
*[http://www.laliluna.de/first-hibernate-example-tutorial.html First Hibernate example tutorial]
*[http://www.laliluna.de/first-hibernate-example-tutorial.html First Hibernate example tutorial]
*[http://www.visual-paradigm.com/product/dbva/ DB Visual Architect]. ORM designer with UML Class Diagram and ERD.
*[http://www.visual-paradigm.com/product/dbva/ DB Visual Architect]. ORM designer with UML Class Diagram and ERD.
*[http://www.onjava.com/pub/a/onjava/2005/09/21/what-is-hibernate.html What is Hibernate?]
*[http://www.onjava.com/pub/a/onjava/2005/09/21/what-is-hibernate.html What is Hibernate?]
*[http://ehcache.sourceforge.net/ Ehcache] (Java distributed cache used by Hibernate)
*[http://ehcache.sourceforge.net/ Ehcache] (Java distributed cache used by Hibernate)
*[http://www.bea.com/framework.jsp?CNT=overview.htm&FP=/content/products/workshop/studio/#Workbench/source=Wikipedia.org AppXRay - support for Hibernate] ORM Workbench with Hibernate
*[http://hibernate.javabeat.net/articles/2007/05/hibernate-orm-framework-introduction/ Introduction to Hibernate]
*[http://hibernate.javabeat.net/articles/2007/05/interceptors-in-hibernate-introduction/ Hibernate Interceptors - An Introduction]
*[http://www.java2s.com/ Hibernate Examples] Examples Organized by Topics (hibernate and Java)
*[http://www.java2s.com/ Hibernate Examples] Examples Organized by Topics (hibernate and Java)


Line 62: Line 59:


; Tools
; Tools
*[http://www.bea.com/framework.jsp?CNT=index.htm&FP=/content/products/workshop/studio/&WT.ac=Wikipedia.org/ BEA Workshop Studio] - ORM and Web Application Tooling Support
*[http://www.softwaresecretweapons.com/jspwiki/Wiki.jsp?page=LinguineMapsForHibernate Linguine Maps] - Visualization library for Hibernate mapping files
*[http://www.softwaresecretweapons.com/jspwiki/Wiki.jsp?page=LinguineMapsForHibernate Linguine Maps] - Visualization library for Hibernate mapping files
*[http://www.myeclipseide.com/ContentExpress-display-ceid-61.html MyEclipse Hibernate Tool ] - Eclipse OR tool
*[http://www.myeclipseide.com/ContentExpress-display-ceid-61.html MyEclipse Hibernate Tool ] - Eclipse OR tool

Revision as of 11:32, 30 September 2007

Hibernate
Developer(s)Red Hat
Stable release
3.2.5.ga / Jul 31, 2007
Repository
Operating systemCross-platform
PlatformJava
TypeORM
LicenseLGPL
Websitewww.hibernate.org

Hibernate is an object-relational mapping (ORM) solution for the Java language: it provides an easy to use framework for mapping an object-oriented domain model to a traditional relational database. Its purpose is to relieve the developer from a significant amount of relational data persistence-related programming tasks.

Hibernate is free as open source software that is distributed under the GNU Lesser General Public License.

Feature summary

Hibernate's primary feature is mapping from Java classes to database tables (and from Java data types to SQL data types). Hibernate also provides data query and retrieval facilities. Hibernate generates the SQL calls and relieves the developer from manual result set handling and object conversion, keeping the application portable to all SQL databases, with database portability delivered at very little performance overhead.

Hibernate provides transparent persistence for Plain Old Java Objects (POJOs). The only strict requirement for a persistent class is a no-argument constructor, not compulsorily public. (Proper behavior in some applications also requires special attention to the equals() and hashCode() methods.[1])

Hibernate can be used both in standalone Java applications and in Java EE applications using servlets or EJB session beans.

History

Hibernate was developed by a team of Java software developers around the world led by Gavin King. JBoss, Inc. (now part of Red Hat) later hired the lead Hibernate developers and worked with them in supporting Hibernate.

The current version of Hibernate is Version 3.x . This version has new features like a new Interceptor/Callback architecture, user defined filters, and JDK 5.0 Annotations (Java's metadata feature). Hibernate 3 is also very close to the EJB 3.0 specification (although it was finished before the EJB 3.0 specification was released by the Java Community Process) and serves as the backbone for the EJB 3.0 implementation of JBoss.

See also

References

  • Christian Bauer, Gavin King: Java Persistence with Hibernate, Manning Publications Company, ISBN 1-932394-88-5
  • Christian Bauer, Gavin King: Hibernate In Action, Manning Publications Company, ISBN 1-932394-15-X
  • Will Iverson: Hibernate: A J2EE™ Developer's Guide, Addison Wesley Professional, ISBN 0-321-26819-9
  • James Elliott: Hibernate: A Developer's Notebook, O'Reilly, ISBN 0-596-00696-9
Ports
Tools