jpms

Modularity in Java

Reading Time: 2 minutes . Modules introduced as part of Java version-9, till Java version-8 we used jars files. As you guys know, Java-9 came out with lots of features and Java modules said to be one of the best feature of java -9. Module helps to mimize coupling, which also lead to easier to maintain code.

JPMS in Java9

Reading Time: 4 minutes Java Platform Modular System is commonly known as JPMS. The concept of JPMS i.e. Java Platform Module System came in Java 9. Its development was first started in 2005 and finally in 2017, this concept came under the project named Jigsaw. Until Java 8, we used jar files, but from Java 9 onwards, we will be using modules. Modularity is the basic rule of good Continue Reading