Core Java
-
Lazy Loading and Caching via Sticky Cactoos Primitives
You obviously know what lazy loading is, right? And you no doubt know about caching. To my knowledge, there is…
Read More » -
Java Command-Line Interfaces (Part 24): MarkUtils-CLI
The first post in this series on parsing command line arguments in Java featured the Apache Commons CLI library. This…
Read More » -
Java Command-Line Interfaces (Part 23): Rop
The Rop library is described on its main page as “a lightweight command line option parser written in Java.” The…
Read More » -
Is Java Certification Worth It?
Gaining a certification in any profession always has its pros and cons, but it seems like in the world of…
Read More » -
Java Command-Line Interfaces (Part 22): argparser
John Lloyd‘s argparser is the library covered in this twenty-second post of the series on Java-based command line argument parsing.…
Read More » -
Streams vs. Decorators
The Streams API was introduced in Java 8, together with lambda expressions, just a few years ago. I, as a disciplined…
Read More » -
Experimenting with Java9 HTTP Client and Process API in JShell
This post continues my exploration of Java9 features from my My Top Java 9 Features blog post. Here we are…
Read More » -
Java Command-Line Interfaces (Part 21): Airline 2
The focus of this twenty-first post in this series on parsing command-line arguments in Java is on the Airline 2…
Read More » -
Java Variables
Variables The variable is the basic unit of storage in a Java program. A variable is defined by the combination…
Read More »