Most voted "jigsaw" questions
Use this tag to reference the question to the Java 9 modularization system.
Learn more…3 questions
Sort by count of
-
16
votes3
answers582
viewsMaven Module vs Java 9 Module
Besides the fact that Maven works with jars and Java 9 with "modules", what is the difference between the modularization system of the two? Why would I stop modularizing my systems with Maven to…
-
11
votes1
answer539
viewsWhat are the main advantages of using the Java 9+ modularization feature?
From Java 9 we have the possibility to modularize our application using the so-called Java Platform Module System Before Java 9, modularization was done purely through Jars, where we had several…
-
4
votes1
answer96
viewsHow does provides...with and 'uses' work in modular Java?
In Java 9, as a result of the Jigsaw project, we gained the ability to define modules. The modules are very simple, but there are still two things that confuse me in them, which is the use of…