Java
-
Finding Years Starting Sunday And Year Range
Determining which years start on a specific day, such as Sunday, can be an interesting challenge, often required in scheduling,…
Read More » -
Asserting JSON Responses with REST-Assured in Java
This article explores how to use Java REST-assured to efficiently assert JSON responses in REST API testing. REST-assured is a…
Read More » -
Java Performance 2 * i * i Multiplication : 2 * (i * i) Faster Than 2 * i * i
When optimizing code, even small differences in expression syntax can impact performance. One such example is the difference between 2…
Read More » -
Updating to HttpStatusCode in Spring Boot 3
In Spring Boot 3, handling HTTP status codes has undergone a notable change. The introduction of HttpStatusCode marks a shift…
Read More » -
Hibernate @TimeZoneStorage Example
1. Introduction Hibernate 6 introduces TimeZoneStorage annotation that specifies how the time zone information of a persistent property or field…
Read More » -
JaCoCo: Achieving Comprehensive Code Coverage in Java
Achieving high code quality and reliability is crucial for any Java project, and one key aspect of this is code…
Read More » -
Integrate Amazon Athena with Spring Boot
Amazon Athena is an interactive query service that makes it easy to analyze data in Amazon S3 using standard SQL.…
Read More » -
Firebase Authentication-Spring Security Integration
Firebase Authentication is a service that allows easy user authentication with email/password, social providers, and phone numbers. On the other…
Read More » -
OpenAPI Custom Generator
OpenAPI is a powerful tool for generating code from API specifications, but sometimes, default generators do not meet specific project…
Read More »