Java
-
Apache Ant 1.9.13 and 1.10.5 released – Supports Java 11 single-file source programs
We just released 1.9.13 and 1.10.5 versions of Apache Ant. As usual, you can download it from the Ant project…
Read More » -
Java 11 upcoming features – Launch Single-File source programs
Java 11 is nearing completion and it’s entered the rampdown phase. It almost feels like a few weeks back that…
Read More » -
Implementing White-Labelling
Sometimes (very often in my experience) you need to support white-labelling of your application. You may normally run it in…
Read More » -
Build a Photo Gallery PWA with Spring Boot, JHipster, and React
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building the same login screens over…
Read More » -
Build a Serverless “Hello World” Function
Serverless, Function as a Service (FaaS) or just cloud functions allows you to write code that will run in the…
Read More » -
Java NIO Tutorial
1. Introduction Java NIO is a library introduced from Java 1.4. Java NIO has since its launch provided an alternative…
Read More » -
Fixing the if smell
From time to time we might end up with some huge if statements in our codebase. Those statements have to…
Read More » -
Deferred Execution with Java’s Predicate
In the previous posts “Deferred Execution with Java’s Supplier” and “Deferred Execution with Java’s Consumer“, I looked at easily deferring…
Read More » -
Spring State Machine: what is it and do you need it?
State machine is a model of computation based on the finite states, as Wikipedia very obligingly says. Usually there are…
Read More »