Data Science & Developer Roadmaps with Chat & Free Learning Resources

10 Hibernate Features That Make Working with Databases from Java Applications Easier

 Javarevisited

Hello folks, in last few articles I shared 10 Spring Boot features which makes Java development easier and 10 Spring Cloud Feature which makes Microservices development easier, it seems you guys liked...

Read more at Javarevisited | Find similar documents

Rich Domain Model with Hibernate

 Javarevisited

The article is a long read. I recommend you to look through the Table of contents in advance. Perhaps some parts can be more intriguing than others.I like Hibernate. Even though it’s complicated (and ...

Read more at Javarevisited | Find similar documents

The One Hibernate Mistake We Have All Done and Three Ways of Fixing It

 Javarevisited

In this article, we’ll discuss a faulty and misleading usage of Hibernate’s @Column(nullable = false).For the code examples in this article, we’ll use the Student entity model:The firstName field shou...

Read more at Javarevisited | Find similar documents

Hibernate isn’t Object Oriented, Don’t try to Make it OOP

 Javarevisited

We work with Hibernate/JPA. I like it. But I totally get the people who hate it with a vengeance like this guy. There are other guys such as Vlad Mihalcea whose absolutely brilliant with Hibernate but...

Read more at Javarevisited | Find similar documents

Hibernate — a silver bullet for Java Persistence (Part 1)

 Javarevisited

In this series I will show that Hibernate is awesome for what it does. And when its limits are hit, a complementary tool should be used. In short, if I go hiking several times a year, I don’t burn my…...

Read more at Javarevisited | Find similar documents

Hibernate is not so evil

 Better Programming

You just don’t know it well enough Photo from my presentation about Hibernate at Warsaw IT Days A few years ago, when I was a Junior Backend Developer, I was really frustrated at Hibernate. Every tim...

Read more at Better Programming | Find similar documents

How to implement Hibernate in Spring Boot

 Javarevisited

JDBC (Java Database Connectivity) is an API provided by Java for connecting Java applications to relational databases. It allows Java applications to interact with various databases using standard SQL...

Read more at Javarevisited | Find similar documents

Hibernate methods — Save, Persist, Update, Merge and SaveOrUpdate

 Javarevisited

Hello everyone. In this article, let us learn about 5 important methods of Hibernate’s Session interface. But before going into the methods, let us look at some basics in Hibernate.The package org.hib...

Read more at Javarevisited | Find similar documents

Evolution of Hibernate’s Naming Strategies with Spring Boot

 Level Up Coding

In this article, let us explore the evolution of Hibernate’s naming strategies with Spring Boot over the years. Application Setup We will set up the application with Spring Initializer with the follow...

Read more at Level Up Coding | Find similar documents

8 Best Courses to Learn Spring and Hibernate for Java Programmers in 2023

 Javarevisited

Spring and Hibernate are two of the hottest and most in-demand web frameworks in the Java world and also two of the most essential skill for any Java programmer to get a job in the web development spa...

Read more at Javarevisited | Find similar documents

Unveiling the Enigma of Hibernate Events: A Journey Through Persistence

 Javarevisited

Hibernate, a powerful and widely-used Object-Relational Mapping (ORM) framework, has revolutionized the way developers interact with databases. Among its many features, Hibernate events stand out as o...

Read more at Javarevisited | Find similar documents

Hibernate: Improving application performance with StatelessSession

 Javarevisited

Almost every Java developer with some years of experience has faced problems about a poor entity definition when working with JPA. Circular references, wrong mapping, and so on.When you are working wi...

Read more at Javarevisited | Find similar documents