Introduction
Explore the major improvements introduced in Java 9 such as Project Jigsaw modularity, the JShell interactive REPL, reactive streams support, and enhanced dependency management. Learn how these features improve compile-time safety and concurrency, giving you a clear understanding of Java 9's impact on efficient application development.
We'll cover the following...
We'll cover the following...
Overview
Java 9 is the newest release of Java and includes Project Jigsaw, which represents a huge restructuring of the core JDK (Java Development Kit) as well as a new and improved way of defining code dependencies. This provides compile-time errors when dependencies are missing as opposed to runtime errors, which is a vast improvement for software development efficiency.
Java 9 includes ...