Core Java
-

Hibernate @EmbeddedTable Explained
Hibernate has traditionally supported embedded objects through the @Embeddable and @Embedded annotations, allowing developers to model reusable value objects without…
Read More » -

A Simple Java Image Viewer
This is my second post in the GIS series—a simple Java Swing Image Viewer that explores the math behind image…
Read More » -

Records and Compact Constructors: Where Validation Logic Actually Belongs
Records hand you equals, hashCode, and toString for free. They don’t hand you immutability for free the moment an array…
Read More » -

Implementing Authorization Using jCasbin
Modern applications require a robust security mechanism to ensure that users can access only the resources they are authorized to…
Read More » -

Using Regular Expressions in Hibernate HQL
Regular expressions (Regex) are one of the most powerful ways to search and validate text, allowing developers to perform pattern…
Read More » -

Understanding the Java Memory Model: Visibility, Ordering, and the Guarantees Most Developers Miss
Why the JMM is the invisible contract behind every concurrent Java program — and what breaks when you misread it.…
Read More » -

Value Classes (JEP 401): When Records Aren’t Flat Enough for the JIT
How value classes differ from records — no identity, no heap header — where they outperform records in tight loops,…
Read More » -

Zero-Trust Architecture for Backend Engineers: What It Actually Means Beyond the Marketing
A few years ago, securing a backend system was relatively straightforward. Applications lived inside a corporate network, databases sat behind…
Read More » -

How the JVM Decides What to Compile: Inside the JIT Tier System and Profiling Pipeline
A conceptual walkthrough of C1, C2, tiered compilation, and why the JVM’s optimizer knows more about your code than you…
Read More »


