Core Java
-

Java Tips: Creating a Monitoring-friendly ExecutorService
In this article we will be extending an ExecutorService implementation with monitoring capabilities. This monitoring capability will help us to measure…
Read More » -

JVM Architecture 101: Get to Know Your Virtual Machine
A beginner’s crash course in Java Virtual Machine (JVM) architecture and Java bytecode 101 Java applications are all around us,…
Read More » -

How to Find K Missing Numbers in Integer Array With Duplicates in Java?
It’s been a long time since I have discussed any coding or algorithm interview questions, so I thought to revisit one…
Read More » -

Local type inference in Java 10, or If it quacks like a duck
Quite recently, Oracle adopted a new strategy of releasing a new language version every six months. The strategy assumes that…
Read More » -

How to exclude a URL from a Filter
By default, filters doesn’t support excluding a specific URL pattern, whenever you define a URL pattern for a filter then…
Read More » -

Recent Java Developments – Late April 2018
There have been several recent developments in the Java-sphere this week and I summarize some of them in this post.…
Read More » -

Enhancing Java switch Statement with Introduction of switch Expression
In late December of last year, I posted “Switch Expressions Coming to Java?” Since then, there has been significant discussion,…
Read More » -

Parallel and Asynchronous Programming in Java 8
Parallel code, which is code that runs on more than one thread, was once the nightmare of many an experienced…
Read More » -

Optional.isEmpty() Coming to Java?
JDK-8184693 requests that the method isEmpty() be added to the Optional class introduced with JDK 8. Invoking Optional.isEmpty() would be…
Read More »
