Project Jigsaw introduces a module system to Java, allowing applications and libraries to be organized into modules with explicit dependencies and encapsulation at the JDK level.
Source Code
module com.myapp {
requires java.sql;
exports com.myapp to java.logging;
}
Utilize JPMS to structure your application into modules with clear dependencies, improving code maintainability, security, and performance.