Hibernate

Hibernate Tomcat JNDI DataSource Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Hibernate Tomcat JNDI DataSource Example Tutorial

Welcome to the Hibernate Tomcat JNDI DataSource example tutorial. We have already seen how to use [Hibernate ORM tool in standalone java application](/community/tutorials/hibernate-tutorial-for-beginners "Hibernate Tutorial For Beginners using XML, Annotations and Property Configurations"), today we will learn how to use Hibernate with DataSource in Tomcat servlet container. Using hibernate in web application is very easy, […]

Read more
Hibernate Tutorial For Beginners — step-by-step DevOps tutorial on Progressive Robot

Hibernate Tutorial For Beginners

Welcome to the Hibernate tutorial for Beginners. Hibernate is one of the most widely used Java ORM tool. Most of the applications use relational databases to store application information and at the low level we use [JDBC API](/community/tutorials/jdbc-tutorial "JDBC Tutorial with Example Projects, DataSource, JNDI and Spring Integration") for connecting to databases and perform CRUD […]

Read more
Hibernate Tutorial — step-by-step DevOps tutorial on Progressive Robot

Hibernate Tutorial

Recently I have written a lot of hibernate tutorial. Hibernate is one of the best Java ORM tool in the current market. So this post is like an index of all the posts for hibernate tutorials and examples. You can go through these hibernate tutorials in sequence to learn hibernate from scratch. Most probably I […]

Read more
Hibernate Caching - First Level Cache — step-by-step DevOps tutorial on Progressive Robot

Hibernate Caching – First Level Cache

Welcome to Hibernate Caching – First Level Cache Example Tutorial. Recently we looked into [Hibernate architecture](/community/tutorials/hibernate-tutorial-for-beginners "Hibernate Tutorial For Beginners using XML, Annotations and Property Configurations"), [hibernate mapping](/community/tutorials/hibernate-many-to-many-mapping-join-tables "Hibernate Many To Many Mapping Join Tables Annotation and XML Configuration Example") and how to use [HQL](/community/tutorials/hibernate-query-language-hql-example-tutorial "Hibernate Query Language (HQL) Example Tutorial") for firing SQL queries […]

Read more
[Solved] HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set — DevOps tutorial on Progressive Robot

[Solved] HibernateException: Access to DialectResolutionInfo cannot be null when ‘hibernate.dialect’ not set

I was following Hibernate Official Documentation to create a basic hibernate application with version 4.3.5.Final. When I executed the application, I got hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set even though all the configuration seemed fine to me. HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set It took […]

Read more
Hibernate Criteria Example Tutorial — step-by-step DevOps tutorial on Progressive Robot

Hibernate Criteria Example Tutorial

Welcome to the Hibernate Criteria Example Tutorial. Today we will look into Criteria in Hibernate. Hibernate Criteria ![criteria in hibernate, hibernate criteria example, hibernate criteria, hibernate criteria join, hibernate criteria query](images/hibernate-criteria-example-tutorial-section-1.png) Most of the times, we use HQL for querying the database and getting the results. HQL is not preferred way for updating or deleting […]

Read more
JPA EntityManager - Hibernate EntityManager — step-by-step DevOps tutorial on Progressive Robot

JPA EntityManager – Hibernate EntityManager

URL: https://www.progressiverobot.com/jpa-entitymanager-hibernate/ JPA EntityManager is at the core of Java Persistence API. [Hibernate](/community/tutorials/hibernate-tutorial) is the most widely used JPA implementation. JPA EntityManager One of the most important aspect of a program is connection with database. Database connection and transaction with database is considered as most expensive transaction. ORM is a very important tool in this […]

Read more
Hibernate EHCache - Hibernate Second Level Cache — step-by-step DevOps tutorial on Progressive Robot

Hibernate EHCache – Hibernate Second Level Cache

Welcome to the Hibernate Second Level Cache Example Tutorial. Today we will look into Hibernate EHCache that is the most popular Hibernate Second Level Cache provider. Hibernate Second Level Cache ![hibernate second level cache, hibernate ehcache example, hibernate cache, EHCache example](images/hibernate-ehcache-hibernate-second-level-cache-section-1.png) One of the major benefit of using Hibernate in large application is it's support […]

Read more
JPA Annotations - Hibernate Annotations — step-by-step DevOps tutorial on Progressive Robot

JPA Annotations – Hibernate Annotations

URL: https://www.progressiverobot.com/jpa-hibernate-annotations/ JPA annotations are used in mapping java objects to the database tables, columns etc. Hibernate is the most popular implement of JPA specification and provides some additional annotations. Today we will look into JPA annotations as well as Hibernate annotations with brief code snippets. JPA Annotations – Hibernate Annotations !JPA Annotations, Hibernate Annotations […]

Read more
Hibernate Interview Questions and Answers — step-by-step DevOps tutorial on Progressive Robot

Hibernate Interview Questions and Answers

Hibernate is one of the most widely used ORM tool for Java applications. It's used a lot in enterprise applications for database operations. So I decided to write a post about hibernate interview questions to brush up your knowledge before the interview. Whether you are fresher or experienced, having good knowledge or Hibernate ORM tool […]

Read more
CHAT