High-Performance Java Persistence Tips

Introduction A high-performance data access layer requires a lot of knowledge about database internals, JDBC, JPA, Hibernate, and this post summarizes some of the most important techniques you can use to optimize your enterprise application. 1. SQL statem… Read more

Similar

Playing with Java Records

Playing with Java 16+ Records. The code: https://adambien.blog/roller/abien/entry/playing_with_java_records See you at: https://airhacks.live... (more…)

Read more »

Comparing Objects in Java

TLDR; Java has a few different ways of comparing variables and objects with one another. ==, equals(), compareTo() and compare(). Java provides various operators such as == and != which check for equality and inequality respectively. They are used in a pr... (more…)

Read more »