Java 11 Articles

Predicate_Not_Java11_FeaturedImage_Techndeck

Predicate not() Example – Java 11

In this post, we will learn "How to use Predicate 'not' method introduced in Java 11?".  Here, we are going to learn the following things: What is the Predicate not() method? How to use it? Let's Begin, 1. What...
Delete_HttpClient_Request_Java11_Featured_Image_Techndeck

DELETE Request using Java 11 HttpClient API

In this article, we are going to see how to perform a DELETE call with new Java 11 HttpClient API.  Let's learn "How to send a DELETE request using Java 11 HttpClient API?". In this tutorial, we...
Put_HttpClient_Request_Java11_Featured_Image_Techndeck

PUT Request with JSON using Java 11 HttpClient API

So far, we have covered sending a GET & POST Request in our tutorial on Java 11 HttpClient API. If you haven't checked that, lets check 'Sending GET Request' by clicking this link and also check 'Sending POST request' using this link. Now, in this example, we are...
Post_HttpClient_Request_Java11_Featured_Image_Techndeck

POST Request with JSON using Java 11 HttpClient API

Up until now, we have already covered sending a GET Request using Java 11 HttpClient API. If you haven't checked that, go for it by clicking this link. Now, in this example, we are going to see "How to send a POST request with JSON as request body using Java 11...