life is too short for a diary



Posts Tagged: java (Page 2)

Daily Logs for Sep 4, 2025

Dear Vishi, dear logs for today...

Continue reading → letters java reactive



Getting Started with Oauth2

OAuth2 is an authorization framework that enables applications to access resources on behalf of a user without exposing their credentials. It is not an authentication protocol by itself — it delegates authorization securely...

Continue reading → oauth2 java spring boot



Compile Time vs Runtime Safety in Java

When writing Java code, ensuring correctness and reliability is a key concern. One way to achieve this is by leveraging the type system to catch errors early—ideally at compile time rather than at runtime. Let's explore this concept through a simple example...

Continue reading → java