Tag: java

  • Zero Lock Execution (27 May 2026)
    Zero lock execution achieves thread safety without synchronized blocks or ReentrantLock, eliminating contention and reducing latency in concurrent systems.
  • Datalust Seq Logs for Spring Boot (05 Sep 2025)
    How to set up Datalust Seq for centralized logging in Spring Boot applications using Docker, GELF protocol, and Logback configuration.
  • JodaTime - week number in month of business date (12 Nov 2020)
    Java code snippet to calculate the week number within a month for a given business date using JodaTime library.
  • IntelliJ - Static Imports by Replace Structurally (31 Oct 2020)
    How to convert regular imports to static imports across multiple files using IntelliJ's Replace Structurally feature.
  • IntelliJ - Live Templates (21 Jul 2020)
    Explore IntelliJ Live Templates project built with Gatsby, providing ready-to-use code snippets for faster development.
  • Java Integer Cache (11 Jun 2020)
    Understanding Java's Integer cache mechanism for values -128 to 127 and why == comparison behaves differently for small vs large integers.
  • IntelliJ - new ticket for constraints in SQL (20 May 2020)
    Why IntelliJ should warn about unnamed SQL constraints and how to properly name them using ALTER TABLE statements.