Tag: java9

  • How to use services in Java Modules?

    Java 9 came up with the module system. This post gives a minimalist explanation of how to create modules in java. Let’s say you have decided to use modules in your application. And you are going to buy and sell coconuts using these modules as done in the post highlighted. And so you have created…

  • How to create Java Modules?

    Java 9 introduced the Module system under the project name Project Jigsaw. This altered the existing structure of Java projects. Java projects can be now encapsulated into modules and each module can be separately packaged into a jar or a run time (customized JRE). Until the module system came out , every Java project has…