π Class.isInstance vs Class.isAssignableFrom
https://www.baeldung.com/java-isinstance-isassignablefrom
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-isinstance-isassignablefrom
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Class.isInstance vs Class.isAssignableFrom and instanceof | Baeldung
A quick and practical overview of Class.isInstance and Class.isAssignableFrom methods.
π How to Find the Kth Largest Element in Java
https://www.baeldung.com/java-kth-largest-element
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-kth-largest-element
β‘οΈ @JavaLearnZone
Baeldung
How to Find the Kth Largest Element in Java | Baeldung
Learn several approaches for finding the kth largest element in a set of unique numbers using Java.
π Get the Current Date, Time and Timestamp in Java 8
https://www.baeldung.com/current-date-time-and-timestamp-in-java-8
β‘οΈ @JavaLearnZone
https://www.baeldung.com/current-date-time-and-timestamp-in-java-8
β‘οΈ @JavaLearnZone
Baeldung
Get the Current Date and Time in Java | Baeldung
This article describes how we may get the current date, current time and current time stamp in Java.
π Introduction to Servlets and Servlet Containers
https://www.baeldung.com/java-servlets-containers-intro
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-servlets-containers-intro
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Introduction to Servlets and Servlet Containers | Baeldung
Learn the concepts around servlets, their containers, and a few essential objects they revolve around.
π Check if a String is a Pangram in Java
https://www.baeldung.com/java-string-pangram
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-string-pangram
β‘οΈ @JavaLearnZone
Baeldung
Check if a String is a Pangram in Java | Baeldung
Learn how to determine if a Java String contains all of the letters in the alphabet
π JDK 16: Checking Indexes and Ranges of Longs
//www.javacodegeeks.com/2020/12/jdk-16-checking-indexes-and-ranges-of-longs.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/12/jdk-16-checking-indexes-and-ranges-of-longs.html
β‘οΈ @JavaLearnZone
Java Code Geeks
JDK 16: Checking Indexes and Ranges of Longs | Java Code Geeks - 2020
In my last post, I described the day period support added with JDK 16 Early Access Build 25. That same build also added methods for checking indexes and
π Static Factories are Great!
//www.javacodegeeks.com/2020/12/static-factories-are-great.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/12/static-factories-are-great.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Static Factories are Great! | Java Code Geeks - 2020
Every now and then I jump on classes with multiple constructors or classes that are rigorous to work with. Let alone not being able to mock part of their
π Day Period Support in JDK 16
//www.javacodegeeks.com/2020/11/day-period-support-in-jdk-16.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/day-period-support-in-jdk-16.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Day Period Support in JDK 16 | Java Code Geeks - 2021
JDK 16 Early Access Build 25 (2020/11/18) includes changes for JDK-8247781 ("Day periods support"). As stated in the JDK 16 Early Access Build 25 Release
π Testing with Hoverfly and Java Part 4: Exact, Glob and Regex Matchers
//www.javacodegeeks.com/2020/11/testing-with-hoverfly-and-java-part-4-exact-glob-and-regex-matchers.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/testing-with-hoverfly-and-java-part-4-exact-glob-and-regex-matchers.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Testing with Hoverfly and Java Part 4: Exact, Glob and Regex Matchers | Java Code Geeks - 2020
Previously we used Hoverfly among its state feature. So far our examples have been close to an absolute request match, thus on this blog we will focus on
π Constrast DataWeave and Java mapping operations
//www.javacodegeeks.com/2020/11/constrast-dataweave-and-java-mapping-operations.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/constrast-dataweave-and-java-mapping-operations.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Constrast DataWeave and Java mapping operations | Java Code Geeks - 2020
Main points: DataWeave 2.0 provides mapping capabilitiesJava and DataWeave can achieve the same mappingsDataWeave mapping operator is less verbose than
π Kafka & Zookeeper for Development: Connecting Brokers to the Ensemble
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-connecting-brokers-to-the-ensemble.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-connecting-brokers-to-the-ensemble.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Kafka & Zookeeper for Development: Connecting Brokers to the Ensemble | Java Code Geeks - 2020
Previously we created successfully a Zookeeper ensemble, now itβs time to add some Kafka brokers that will connect to the ensemble and we shall execute
π Testing Expected Exceptions with JUnit 5
//www.javacodegeeks.com/2020/11/testing-expected-exceptions-with-junit-5.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/testing-expected-exceptions-with-junit-5.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Testing Expected Exceptions with JUnit 5 | Java Code Geeks - 2020
This post shows how to test for expected exceptions using JUnit 5. If you're still on JUnit 4, please check out my previous post. Let's start with the
π Locality-Sensitive Hashing in Java Using Java-LSH
https://www.baeldung.com/locality-sensitive-hashing
β‘οΈ @JavaLearnZone
https://www.baeldung.com/locality-sensitive-hashing
β‘οΈ @JavaLearnZone
Baeldung
Locality-Sensitive Hashing in Java Using Java-LSH | Baeldung
A quick and practical guide to applying the Locality-Sensitive Hashing algorithm in Java using the java-lsh library.