Learn about Docker volumes and how to manage and connect them to containers
Baeldung Author
Ashley Frieze
I've been writing software since I was a kid, and have been doing it professionally since the days of dial-up internet. These days I specialize in cloud-based enterprise Java. When I'm not helping teams create software, I can be found performing as a stand-up comedian, or in musical theater.
Here's what I've written (so far):
Guide to the System Stubs Library
Filed under Testing
Learn the importance of being able to mock system resources and how System Stubs allows for complex configurations of stubbing with JUnit 4 and JUnit 5 plugins
How to Access an Iteration Counter in a For Each Loop
Filed under Java, Java Collections
Java’s for each loop does not provide an iteration counter. There are a few ways we can iterate over both the item and its index.
How to Use Regular Expressions to Replace Tokens in Strings in Java
Filed under Algorithms, Java
Learn some regular expression strategies for replacing tokens in strings
Guide to Java BiFunction Interface
Filed under Java
Learn some common patterns for Java functional interfaces that take two parameters.