Tag Archive

Tag Archives for " Java 9 "

Immutable Collections in Java 9

1.Overview The arrival of Java 9 brings many new features to Java’s Collections API, one of which being collection factory methods which adds syntactic sugar for creating small unmodifiable Collection instances using new convenience factory methods as per JEP 269. In this article, we will discuss the usage and implementation details. 2. Motivation Let’s start […]

Continue reading

Java 9 Modularity

Have you ever experienced at runtime (Its because of missing dependencies) and spent hours and days trying to track down irreproducible bugs in your production environment, just to find out that somehow two versions of 3rd party dependencies have managed to sneak into your classpath. Tracking them down is a painful experience eventhough we use […]

Continue reading