© 2023 Hashnode
#hibernate
Introduction In this tutorial, we are going to implement one-to-one mapping between objects in Java and use Spring Data JPA to automatically implement the mapping in a relational database (MySQL). If …
Hibernate is a framework that helps to communicate with the database. It's also called an 'ORM' tool. What is ORM? ORM stands for Object Relational Mapping, where java objects are mapped with database…
Introduction The relational database stores its data in rows and columns. This data structure is not easily mapped to the Object-oriented format. For example, data in the format of Rows and Columns ca…
This tutorial is part of Springing into Action: A Spring Boot Journey from Novice to Pro Series, be sure to check it out for more related content! Java Persistence API (JPA) is a Java specification fo…
JPA : JPA is a standard interface for interacting with databases in Java. It provides a common set of interfaces and classes that can be used to create, read, update, and delete (CRUD) data in a dat…
Roadmap for Java Foundation Course: B A S I C S __ O F __ J A V A 1. History of Java 2. Features of Java 3. Hello Java Program 4. Program Interval 5. How to set a Path? 6. Difference between JDK, JR…
Java Persistence API (JPA) and Hibernate are two popular technologies used in the Java ecosystem for object-relational mapping (ORM). While they are often used interchangeably, there are some key diff…
Overview Hikari is a battle-proven, lightweight, high performance connection pool library for Java. It's also the default connection pool in Spring Boot. This article will dive into some configuration…
Introduction This article is part four of a series of data access best practices when using JPA and CockroachDB. The goal is to help reduce the impact of workload contention and to optimize performanc…
Introduction This article is part three of a series of data access best practices when using JPA and CockroachDB. The goal is to help reduce the impact of workload contention and to optimize performan…