Skip to content
A small application to demonstrate the Java Platform Module System
Java Shell Batchfile
Branch: master
Clone or download

README.md

ServiceMonitor

The example application from my book The Java Module System. The Service Monitor is an application that observes a hypothetical network of microservices by

  • contacting individual services (not really, it just makes up data)
  • collecting and aggregating diagnostic data into statistics
  • persisting statistics
  • making statistics available via REST

It is split into a number of modules that focus on specific concerns. Each module has its own directory that contains the known folder structure, e.g. src/main/java.

Book References and Module Names

The project is closely related to the book. The bookmark emoji 🔖 marks references to chapters and sections (for example, [🔖2] for chapter 2 and [🔖2.2] for section 2.2).

The module names in this demo are dangerously short to make them easier on the eyes in scripts, snippets, diagrams, and so forth. Do not use such short names in real life! Instead, name modules like packages, i.e. pick a domain that belongs to the project and reverse it, so you end up with unique names [🔖3.1.3].

Branches

The master branch uses basic features [🔖2.2], except where it has to use automatic and unnamed modules for the non-modularized dependencies (Spark, Hibernate). Other branches explore individual features of the module system:

The branch features-combined combines many of those into a final version of the application [🔖15.1].

Then there are some branches that explore how things can break:

Setup

This demo was developed against JDK 9.0.4. The command line scripts for shell and batch use the default commands javac, jar, and java. If these commands don't refer to the Java 9 version on your system, you can enter the appropriate paths at the top of each script.

Java

Don't worry if your system still runs Java 8 and you don't want to make Java 9 or later your default. Just pick a recent Java version (see the archives for JDK 9) and unpack it. Then you can add it to your IDE (how-to for IntelliJ and Eclipse) and configure Maven with `.mavenrc to use a specific JDK.

IDEs and Build Tools

This is a multi-module Maven project, which your IDE should be able to import. You should use at least IntelliJ IDEA 2017.2, Eclipse Oxygen.1a, or NetBeans 9. If you're using Maven directly, make sure you have 3.5.0 or higher.

Build and Execution

This being a Maven project means you can build and run with with Maven, but to really see how the module system works, I recommend to use the scripts.

Maven

To build and run with Maven execute the following in the project's root:

mvn clean install
mvn exec:exec -pl .

Unfortunately, Jetty doesn't come up due to a NoClassDefFoundError (of org.eclipse.jetty.http.pathmap.PathSpec). Need to inspect that...

It is also not possible to demonstrate all details with Maven. Some branches only show the expected behavior when script is executed (the branch's README will point that out.)

Scripts

The root directory contains a number of Windows batch and Linux shell scripts:

  • compile: compiles the modules one by one
  • multi-compile: compiles all modules at once
  • dry-run: launches the application with --dry-run, which aborts before calling the main method
  • run: launches the application

Before you can use them, you need to run mvn install once, so Maven can download the dependencies and copy them into the libs folder.

You can’t perform that action at this time.