π Using Comparator.nullsLast() to Avoid NullPointerException When Sorting
https://www.baeldung.com/java-comparator-nullslast-avoid-nullpointerexception
https://www.baeldung.com/java-comparator-nullslast-avoid-nullpointerexception
Baeldung on Kotlin
Using Comparator.nullsLast() to Avoid NullPointerException When Sorting | Baeldung
Explore the power of Comparator.nullsLast() that allows us to sort data safely and predictably.
π Return Non-null Elements From Java 8 Map Operation
https://www.baeldung.com/java-stream-non-null-map
https://www.baeldung.com/java-stream-non-null-map
Baeldung
Return Non-null Elements From Java 8 Map Operation | Baeldung
Learn how to collect non-null elements from a Stream mapping operation.
π Replacing Strings in Java Using Regex: Back Reference vs. Lookaround
https://www.baeldung.com/java-regex-replace-strings-back-reference-vs-lookaround
https://www.baeldung.com/java-regex-replace-strings-back-reference-vs-lookaround
Baeldung
Replacing Strings in Java Using Regex: Back Reference vs. Lookaround | Baeldung
In this tutorial, we'll explore how to use the replaceAll() method in the String class to replace text using regular expressions. We'll compare the back reference and lookaround methods for this operation and evaluate their performance.
π Declare an Enum in an Inner Class in Java
https://www.baeldung.com/java-declare-enum-inner-class
https://www.baeldung.com/java-declare-enum-inner-class
Baeldung
Declare an Enum in an Inner Class in Java | Baeldung
Explore the historical constraints on static types within inner classes before Java 16 and learn about the significant relaxation of these rules in Java 16 and later versions.
π Extract the Common Name (CN) from an X509 Certificate in Java
https://www.javacodegeeks.com/extract-the-common-name-cn-from-an-x509-certificate-in-java.html
https://www.javacodegeeks.com/extract-the-common-name-cn-from-an-x509-certificate-in-java.html
Java Code Geeks
Extract the Common Name (CN) from an X509 Certificate in Java - Java Code Geeks
Learn how to extract the Common Name (CN) from an X509 certificate in Java using regex, Bouncy Castle, and more.
π Guide to ExecutorService vs. CompletableFuture
https://www.javacodegeeks.com/guide-to-executorservice-vs-completablefuture.html
https://www.javacodegeeks.com/guide-to-executorservice-vs-completablefuture.html
Java Code Geeks
Guide to ExecutorService vs. CompletableFuture - Java Code Geeks
Java ExecutorService vs CompletableFuture: Understand the differences and uses of Java ExecutorService and CompletableFuture for concurrency.
π Conquering Errors in Java Lambdas
https://www.javacodegeeks.com/2024/05/conquering-errors-in-java-lambdas.html
https://www.javacodegeeks.com/2024/05/conquering-errors-in-java-lambdas.html
Java Code Geeks
Conquering Errors in Java Lambdas - Java Code Geeks
Untangle errors in your Java Lambdas! This guide explores exception handling techniques - try-catch blocks, functional interfaces...
π Reactive APIs Offered by Apache HttpClient
https://reflectoring.io/apache-http-client-reactive-apis/
https://reflectoring.io/apache-http-client-reactive-apis/
reflectoring.io
Reactive APIs Offered by Apache HttpClient
In this article, we are going to learn about reactive APIs offered by Apache HttpClient APIs. We are going to explore how to use reactive, full-duplex HTTP/1.
π Create a HTTP Client with Apache HttpClient
https://reflectoring.io/create-a-http-client-with-apache-http-client/
https://reflectoring.io/create-a-http-client-with-apache-http-client/
reflectoring.io
Create a HTTP Client with Apache HttpClient
In this article series, weβre going to explore Apache HTTPClient APIs. Weβll get familiar with the different ways Apache HttpClient enables developers to send and receive data over the internet.
π Classic APIs Offered by Apache HttpClient
https://reflectoring.io/apache-http-client-classic-apis/
https://reflectoring.io/apache-http-client-classic-apis/
reflectoring.io
Classic APIs Offered by Apache HttpClient
In this article, we are going to learn about the classic APIs offered by Apache HttpClient. We are going to explore the different ways Apache HttpClient helps us to send and receive data over the internet in classic (synchronous) mode.