Enterprise Java
-
Apache Kafka Consumer Rebalance
Consumer rebalance decide which consumer is responsible for which subset of all available partitions for some topic(s). For example, you…
Read More » -
Dependency management and Maven
Maven is great and mature. There is always a solution on almost everything. The main case you might stumble on…
Read More » -
Kafka – Exactly-Once Semantics
In distributed environment failure is a very common scenario that can be happened any time. In the Kafka environment, the…
Read More » -
Access spring Request scope cache in Singelton bean called from fork-join/thread pool
Problem: Spring enabled cache who’s scope is set to Request need to be accessed by a singleton bean which is…
Read More » -
Maven Tutorial For Selenium Test Automation
While working on a project for test automation, you’d require all the Selenium dependencies associated with it. Usually these dependencies…
Read More » -
Spring boot custom banner generation
Whenever we start a Spring Boot application a text message shown below is displayed . This is called as a…
Read More » -
AWS DynamoDB version field using AWS SDK for Java 2
It is useful to have a version attribute on any entity saved to anAWS DynamoDB database which is simply a…
Read More » -
Spring Boot Port Change To Custom or New Port From Default
A quick guide to change the port for Spring Boot application. Examples to server.port property in application.properties file and yml…
Read More » -
Using Testcontainers in Spring Boot Tests For Database Integration Tests
In this blog post I’d like to demonstrate how I integrate Testcontainers in Spring Boot tests for running integration tests…
Read More »