Hibernate Archive

Architecture of Hibernate Search

Hibernate Search brings the power of full text search engines to the persistence domain model by combining Hibernate Core with the capabilities of the Apache Lucene search engine.           Hibernate Search = Hibernate Core + …

Hibernate Batch Processing

Suppose there is one situation in which you have to insert 1000000 records in to database in a time. So what to do in this situation… In Native Solution in the Hibernate Session session = …

Hibernate Count Query

In this section we will show you, how to use the Count Query. Hibernate supports multiple aggregate functions. when they are used in HQL queries, they return an aggregate value (such as sum, average, and …