Java Streams: Use anyMatch() over count() > 0 for checking at least one occurrenceMarch 2, 2020·3 minsjavaI discuss why using the anyMatch() method in the Java Stream API is both safer and more performant than using filter().count > 0.
Spring overwrites map keys with bean name from valueJanuary 5, 2020·2 minsjava springI cover a strange behavior where Spring overwrites map keys with value bean names.
Understanding the PK in SAP Hybris CommerceJune 26, 2019·3 minshybrisI cover the basics of how PK’s work in SAP Hybris.
Calling remove() on ArrayList throws UnsupportedOperationExceptionFebruary 26, 2019·1 minjavaI cover one of the nuances in the Java Collections Framework when creating ArrayList objects.
Why Removing an Element from an ArrayList in Java Can Throw UnsupportedOperationExceptionFebruary 26, 2019·1 minjavaIn this article, we’ll cover one of the nuances in the Java Collections Framework when creating ArrayList objects.
Create List and Map Beans in Spring XMLFebruary 18, 2019·1 minspringIn this article, we’ll explore how to create lists and maps in the Spring Framework using XML configuration.
Create a file with a specific size in JavaFebruary 1, 2019·Updated: February 26, 2024·1 minjavaI cover how to create an empty file and a file with a certain size filled with random data.
The Risks of Dead Code in SoftwareAugust 7, 2018·3 minsExplore the dangers of dead code and how to prevent it.
Sort a List of Objects by Field in JavaMay 9, 2018·3 minsjavaI demonstrate the different ways to sort a list of objects by field.