Setting the strictness of Mockito mock(s)2022-06-07 Mockito TestingHow to set the strictness of your mocks at the class level and change the strictness of individual mocks.
Create an annotation and read its data2022-05-14 Annotation JavaCreating an annotation and accessing its metadata during runtime to print the data to the console output.
Web crawler with virtual threads2022-05-13 Multithreading JavaWeb scraper that uses virtual threads to find URLs on the internet.
Structured concurrency in Java with Loom2022-05-05 Multithreading JavaWe take a look at how to use structured concurrency in Java with Project Loom.
Java Stream Group By2022-04-26 Java StreamsWe will look at some handy group by's you do with Streams.
Java Pattern: Singleton2022-04-25 Java Design PatternIn this post, we walk through two ways of creating the Singleton pattern in Java.