↧
Hibernate configuration
This post explains the simple and one entry point of configuring the hibernate framework with in the application. This will act as a single entry point of accessing hibernate services/methods. Steps:...
View ArticleHQL Query Builder
public class HqlQueryBuilder{ /** * Generate select hibernate query as FROM TABLENAME WHERE whereClause; * This query is to read records using the {@code whereClause} * @param daoBase * @param...
View ArticleHQL Query : Build HQL query
Hibernate introduced a query language for developers which is similar to SQL but follows OOP (Object Oriented Programming) concepts, named as HQL (Hibernate Query language). We know how to fetch...
View Article