Tuanhdotnettuanhnet.hashnode.dev·Jan 17, 2025How Hibernate ORM Works Under the HoodSource: How Hibernate ORM Works Under the Hood 1. Overview of Hibernate ORM Hibernate ORM acts as a bridge between your Java application and the database, abstracting away the complexities of data management. By mapping Java classes to databas...hibernate
João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025Kotlin Coroutines vs Java Virtual Threads — A good story, but just that…1. Introduction In this article, we are going to have a trial-and-error look at two different implementations of Coroutines also known as Continuations within the JVM. These are Java Virtual Threads which are a part of Project Loom and Kotlin Corouti...goodstory
João Esperancinhajesperancinha.hashnode.dev·Jan 8, 2025Learning AWS with Localstack and Reactive Kotlin — A stamps and coins implementation1. Introduction Amazon Web Services have been around since at least 2002 to provide commercially available cloud computing. Whether in concept still or already physically available, the designation of cloud computing goes way back up until 1996. This...Kotlin
FullStackJavafullstackjava.hashnode.dev·Jan 3, 2025Understanding and Resolving Hibernate TimeZone Normalization Issues with MySQL DateTime EntriesIntroduction When working with Java applications using Hibernate and MySQL, developers often encounter timezone-related issues, particularly with DateTime entries. One common problem is incorrect offset calculations during timezone normalization. Thi...Java
Tuanhdotnettuanhnet.hashnode.dev·Dec 17, 2024Methods to Optimize Database Queries Using Query Hints in Spring Data JPASource: Methods to Optimize Database Queries Using Query Hints in Spring Data JPA 1. Understanding Query Hints in Spring Data JPA Query Hints are a mechanism in JPA that allows developers to provide hints to the underlying JPA provider about h...hibernate
Anirban Chandcse-unveiled.hashnode.dev·Dec 15, 2024JDBC vs Hibernate vs JPA vs Spring Data JPA: A Beginner’s Guide to Java Data Handling ✨In the world of Java application development, dealing with databases is a crucial part of most projects. The challenge? Picking the right tool or framework for interacting with databases efficiently. If you’re confused by terms like JDBC, Hibernate, ...Java
Tuanhdotnettuanhnet.hashnode.dev·Dec 6, 2024Techniques for Using @NoRepositoryBean in Spring Data JPA: A Comprehensive GuideSource: Techniques for Using @NoRepositoryBean in Spring Data JPA: A Comprehensive Guide 1. Understanding @NoRepositoryBean The @NoRepositoryBean annotation is part of the Spring Data JPA framework and is used to indicate that an interface or ...hibernate
Maheshwar Ligadefortechwastitechwasti.com·Dec 4, 2024Creating SQL Queries Dynamically in Spring Boot!Working with databases is a fundamental part of developing most applications, but sometimes, static SQL queries don’t meet the dynamic requirements of real-world applications. For example, what if you need to build a search feature that filters resul...Spring BootSpring Data Jpa
Maheshwar Ligadefortechwastitechwasti.com·Dec 2, 2024Understanding Repositories in Spring Data JPA!Spring Data JPA provides several repository interfaces to facilitate data persistence and retrieval. These interfaces extend each other to build upon functionality, starting from basic CRUD operations to more advanced capabilities like pagination and...Spring BootSpringboot
Mateusz Milewczykmmilewczyk.hashnode.dev·Nov 28, 2024Entity in Hibernate: Mapping Java Objects to Database StructuresHibernate is one of the most popular Object-Relational Mapping (ORM) frameworks in the Java environment. It enables effective mapping of Java objects to corresponding structures in relational databases. In this article, we will delve into the concept...hibernate