How To Send Heartbeats Periodically With ScheduledExecutorService In Java
While working on a licensing application, I had to develop a system to send heartbeats to a licensing server every 10 mins. In this blog post, we'll explore how to…
While working on a licensing application, I had to develop a system to send heartbeats to a licensing server every 10 mins. In this blog post, we'll explore how to…
In our previous tutorial, we implemented a thin REST API client application to consume secured CRUD REST APIs. However, the client does not support proxy authentication. Therefore, we are going to…
Recently, I was given a task in which I had to call the OMDB API to fetch the box office value of 10 top-rated movies on the fly. Making 10…
In our previous tutorial, we implemented RESTful CRUD API. Now, we are going to implement a REST client to consume those APIs with JWT authentication in Java without using any framework.…
Earlier, we have seen how to Build Spring Boot 2.X RESTful CRUD API. However, sometimes we might need to implement REST services without using the Spring framework at all. Hence,…
In this article, we are going to explore the Java Stream API with some real-time use cases from the projects I've worked. What is Stream? A Stream in Java can…