answersLogoWhite

0

How does hibernate work in java?

Updated: 8/11/2023
User Avatar

Wiki User

15y ago

Best Answer

Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.

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

Rather than utilize bytecode processing or code generation, Hibernate uses runtime reflection to

determine the persistent properties of a class. The objects to be persisted are defined in a

mapping document, which serves to describe the persistent fields and associations, as well as any

subclasses or proxies of the persistent object. The mapping documents are compiled at

application startup time and provide the framework with necessary information for a class.

Additionally, they are used in support operations, such as generating the database schema or

creating stub Java source files.

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 supported SQL databases, with database portability delivered at very little performance overhead.

MappingMapping Java classes to database table is accomplished through the configuration of an XML file or by using Java Annotation. When using an XML file, Hibernate can generate skeletal source code for the persistence classes. This is unnecessary when annotation is used. Hibernate can use the XML file or the annotation to maintain the database schema.

Facilities to arrange one-to-many and many-to-many relationships between classes are provided. In addition to managing association between objects, Hibernate can also manage reflexive associations where an object has a one-to-many relationship with other instances of its own type.

Hibernate supports the mapping of custom value types. This makes the following scenarios possible:

  • Overriding the default SQL type that Hibernate chooses when mapping a column to a property
  • Mapping Java Enum to columns as if they were regular properties
  • Mapping a single property to multiple columns
PersistenceHibernate 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.

Collections of data objects are typically stored in Java collection objects such as Set and List. Java Generics can be used in Java 5 and higher. Hibernate can be configured to lazy load associated collections. Lazy loading is the default as of Hibernate 3.

Related objects can be configured to cascade operations from one to the other. For example, a parent such as an Album object can be configured to cascade its save and/or delete operation to its child Track objects. This can reduce development time and ensure referential integrity. A dirty checkingfeature avoids unnecessary database write actions by performing SQL updates only on the modified fields of persistent objects.

Hibernate Query Language(HQL)Hibernate provides a SQL inspired language called Hibernate Query Language (HQL) which allows SQL-like queries to be written against Hibernate's data objects. Criteria Queries are provided as an object-oriented alternative to HQL. IntegrationHibernate can be used both in standalone Java applications and in Java EE applications using servlets or EJB session beans.
User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions. The Hibernate 2.1 framework won a Jolt Award in 2005.

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

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 supported SQL databases, with database portability delivered at very little performance overhead

Mapping

Mapping Java classes to database table is accomplished through the configuration of an XML file or by using Java Annotation. When using an XML file, Hibernate can generate skeletal source code for the persistence classes. This is unnecessary when annotation is used. Hibernate can use the XML file or the annotation to maintain the database schema.

Facilities to arrange one-to-many and many-to-many relationships between classes are provided. In addition to managing association between objects, Hibernate can also manage reflexive associations where an object has a one-to-many relationship with other instances of its own type.

Hibernate supports the mapping of custom value types. This makes the following scenarios possible:

* Overriding the default SQL type that Hibernate chooses when mapping a column to a property

* Mapping Java Enum to columns as if they were regular properties

* Mapping a single property to multiple columns

Persistence

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.

Collections of data objects are typically stored in Java collection objects such as Set and List. Java Generics can be used in Java 5 and higher. Hibernate can be configured to lazy load associated collections. Lazy loading is the default as of Hibernate 3.

Related objects can be configured to cascade operations from one to the other. For example, a parent such as an Album object can be configured to cascade its save and/or delete operation to its child Track objects. This can reduce development time and ensure referential integrity. A dirty checking feature avoids unnecessary database write actions by performing SQL updates only on the modified fields of persistent objects.

Hibernate Query Language(HQL)

Hibernate provides a SQL inspired language called Hibernate Query Language (HQL) which allows SQL-like queries to be written against Hibernate's data objects. Criteria Queries are provided as an object-oriented alternative to HQL.

Integration

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

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How does hibernate work in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the use of hibernet in Java?

Hibernate is a framework in Java and J2EE which is used to connect to the database in Enterprise class applications. Actually Hibernate is too big a topic to elaborate in one answer but it is used to connect to databases and retrieve/update values. The benefit is that, we need not manually write queries like we do in normal Java database connectivity. Instead hibernate takes care of connecting to the database and picking up or updating the values we need. It does this with the help of hibernate mapping files which are xml files that represent the database schema which we intend on retrieving or updating.


Do you need java for my browser to work?

In general, not. The browser will work without Java; some individual sites that require Java will NOT work.


Can android apps work on java phones?

Sadly, no. Android apps cannot work on java phones.


When applets work on java ring?

client server program in java ring


What is java's purpose on my PC?

Programs that are specifically designed with Java require a Java runtime to work on a computer. (In the case of Java, the runtime is called "Java Virtual Machine".) If you have any such program, you need to have Java.


How does a java ring work?

item sale i too dono


What is different between conectivity in java?

Connectivity in Java can be affected by internet connection, as well as the type of Java. There are times that if there is a poor connection, it can cause Java to not work properly. Java should be updated regularly.


Do java phones work with AT and T?

Yes they do.


How do you make Minecraft work?

You need Java.


Does a network bridge still work if the laptop is off?

Only will work if it is on sleep, not off or hibernate.


How do I download Java 6 Runtime for Minecraft to work?

simply search for java 6 and get it from the official java site, download and install. ~Hope I helped! ~Tim


What are topics covered in advanced Java?

Some of the concepts covered in Advanced Java are:MultithreadingException HandlingRemote Method Invocation - RMIGarbage Collectionetc