java-httpclient

Java 11 HttpClient

Java 11 HttpClient with Basic Authentication

Upasana | December 01, 2019 | 1 min read | 945 views | java-httpclient

We will create Java 11 HttpClient that accesses Basic Auth protected REST API resource using sync and async mode. We will use Kotlin for the reference implementation.

Read Article

Using Java 11 HttpClient with Kotlin Coroutines

Upasana | October 27, 2019 | 2 min read | 225 views | java-httpclient

In this article we will explore how Java 11 HttpClient can be utilized for making non-blocking Http requests. We will also explore how this callback based code can be greatly simplified using Kotlin Coroutines.

Read Article

HTTP Head request using Java 11 HttpClient - Kotlin

Upasana | October 27, 2019 | 3 min read | 524 views | java-httpclient

In this article we will learn how to make HTTP Head request using Java 11 HttpClient Api. HttpClient supports both sync and async versions for send request method.

Read Article

HTTP GET request with Java 11 HttpClient - Kotlin

Upasana | October 27, 2019 | 2 min read | 827 views | java-httpclient

In this article we will learn how to make HTTP GET request using Java 11 HttpClient Api in sync as well as async fully non-blocking mode.

Read Article