Redha Bayu Anggararedhabayuanggara.hashnode.dev·Dec 2, 2023JDBC or ( JPA also Hibernate) in Spring FrameworkLet’s dive deep to settle on a framework for Database operations DDL JDBC Java Database Connectivity (JDBC) is an application programming interface (API) for the Java programming language that defines how a client can access a database. In February 1...DiscussJava
Mehmet Nurimehmetnuri.com·Nov 26, 2023History of JavaWe will learn about the history of the Java programming language in this part of our Java programming series. Java is a programming language developed by Sun Microsystems and introduced in 1995. Java was originally called "Oak" and was developed by a...DiscussJava Series Java
Andras Csanyiandrascsanyi.com·Nov 12, 2023Dev Diary #2A week ago I spent a few hours with Encyclopedia Galactica, especially its repository level which means Hibernate. I'm not familiar with Hibernate at all, I would say I'm way better with EF Core than with Hibernate, moreover EF Core is superior for m...DiscussDevDiarydev-diary
Chinedu Ihediohachinexboroja24.hashnode.dev·Oct 29, 2023Understanding the key differences: JPA vs Hibernate-ORM in Java applications.Hey everyone!! Let’s delve into something cool today, which is Hibernate and Java Persistence API (JPA). We will discuss the differences between Hibernate and JPA, and also the relationship. Prerequisites As this article focuses on Java programmers a...Discuss·10 likesJava
Robert Niestrojrobertniestroj.hashnode.dev·Oct 25, 2023Ordering columns in a Table in JPA/HibernateThe order of columns in a Table does matter? Most of the time it does not matter. However, the order of columns in a DB might impact the physical storage of the data. Columns are ordered in the way they were added to the table. For example in Postgre...Discuss·551 readsJava
Arnau Aregallaregall.tech·Oct 13, 2023Hibernate 6: custom SQL functions in Spring Data JPA repositoriesIntroduction This article will walk through the process of configuring custom SQL functions using Hibernate 6 and Spring Data. The goal is to demonstrate, using Hibernate 6 and Spring Data JPA: How to declare our custom SQL functions on our codebase...Toni Uimonen and 1 other are discussing this2 people are discussing thisDiscuss·2 likes·458 readshibernate
Zikani Nyirenda Mwasezikani.hashnode.dev·Oct 8, 2023Implementing a Custom ID generator for Hibernate entities in JavaIf you have used Hibernate before you know that you can specify that an Entity class should have it's @Id fields set via @GeneratedValue - typically you use either a sequence or identity strategy to automatically generate, say, auto-incrementing inte...Discuss·2 likes·58 readshibernate
Joao Bento Candido Bezerrajbcbezerra.hashnode.dev·Oct 7, 2023An Unofficial Guide to HibernateAs I delved into the world of Hibernate, my journey led me through a maze of questions on platforms like Medium and Stack Overflow. Admit it, we've all been there—preferring quick solutions on forums rather than diving into hefty documentation. The c...Discusshibernate
Kawsar Ahmed Bhuiyankawsar.hashnode.dev·Sep 8, 2023Understanding FetchType, FetchMode, and Lazy Loading in JPA with HibernateJava Persistence API (JPA) is a powerful Java framework for managing relational data in applications. When working with JPA, it's crucial to understand how data is fetched from the database and how to control this behavior effectively. In this articl...Discuss·37 readshibernate
Satya Puranampuranamsatya.hashnode.dev·Sep 3, 2023Java Back-End Road Map for absolute BeginnersWhy only Java? Java is easy to learn. Platform Independent. WORA: stands for write once, run anywhere. Java is open-source and free of cost. Java has a Rich API. Learn the Basics of Programming Firstly concentrate on Core Java Concepts. Diff...Discuss·2 likes·53 readsJava