Tag Java

Setup ELK Stack to capture Spring Boot logs

ELK stack is one of the good stack available to organize and visualize Spring Boot application logs. So, what’s ELK Stack? “ELK” is the acronym for three open source projects: Elasticsearch, Logstash, and Kibana. Elasticsearch is a search and analytics engine.…

HTTP Requests in Java

We have many libraries in Java to make HTTP requests and get information from external API. HttpClient This is added in Java 9 and latest LTS that has is Java 11. To use this, first build a request then make…