Home > Articles

This chapter is from the book

Understanding the Java Platform Module System

As just mentioned, the JPMS was a strategic response to the mounting complexity and unwieldiness of the monolithic JDK. The primary goal when developing it was to create a scalable platform that could effectively manage security risks at the API level while enhancing performance. The advent of modularity within the Java ecosystem empowered developers with the flexibility to select and scale modules based on the specific needs of their applications. This transformation allowed Java platform developers to use a more modular layout when managing the Java APIs, thereby fostering a system that was not only more maintainable but also more efficient. A significant advantage of this modular approach is that developers can utilize only those parts of the JDK that are necessary for their applications; this selective usage reduces the size of their applications and improves load times, leading to more efficient and performant applications.

Demystifying Modules

In Java, a module is a cohesive unit comprising packages, resources, and a module descriptor (module-info.java) that provides information about the module. The module serves as a container for these elements. Thus, a module

  • Encapsulates its packages: A module can declare which of its packages should be accessible to other modules and which should be hidden. This encapsulation improves code maintainability and security by allowing developers to clearly express their code’s intended usage.

  • Expresses dependencies: A module can declare dependencies on other modules, making it clear which modules are required for that module to function correctly. This explicit dependency management simplifies the deployment process and helps developers identify problematic issues early in the development cycle.

  • Enforces strong encapsulation: The module system enforces strong encapsulation at both compile time and runtime, making it difficult to break the encapsulation either accidentally or maliciously. This enforcement leads to better security and maintainability.

  • Boosts performance: The module system allows the JVM to optimize the loading and execution of code, leading to improved start-up times, lower memory consumption, and faster execution.

The adoption of the module system has greatly improved the Java platform’s maintainability, security, and performance.

Modules Example

Let’s explore the module system by considering two example modules: com.house.brickhouse and com.house.bricks. The com.house.brickhouse module contains two classes, House1 and House2, which calculate the number of bricks needed for houses with different levels. The com.house.bricks module contains a Story class that provides a method to count bricks based on the number of levels. Here’s the directory structure for com.house.brickhouse:

src
── com.house.brickhouse
        ├── com
        │   └── house
        │       └── brickhouse
        │           ├── House1.java
        │           └── House2.java
        └── module-info.java

com.house.brickhouse:
   module-info.java:

module com.house.brickhouse {
    requires com.house.bricks;
    exports com.house.brickhouse;
}

com/house/brickhouse/House1.java:

package com.house.brickhouse;
import com.house.bricks.Story;

public class House1 {
    public static void main(String[] args) {
        System.out.println("My single-level house will need " + Story.count(1) + " bricks");
    }
}

com/house/brickhouse/House2.java:

package com.house.brickhouse;
import com.house.bricks.Story;

public class House2 {
    public static void main(String[] args) {
        System.out.println("My two-level house will need " + Story.count(2) + " bricks");
    }
}

Now let’s look at the directory structure for com.house.bricks:

src
└── com.house.bricks
    ├── com
    │   └── house
    │       └── bricks
    │           └── Story.java
    └── module-info.java

com.house.bricks:
   module-info.java:

module com.house.bricks {
    exports com.house.bricks;
}

com/house/bricks/Story.java:

package com.house.bricks;

public class Story {
    public static int count(int level) {
        return level * 18000;
    }
}

Compilation and Run Details

We compile the com.house.bricks module first:

$ javac -d mods/com.house.bricks src/com.house.bricks/module-info.java src/com.house.bricks/com/
house/bricks/Story.java

Next, we compile the com.house.brickhouse module:

$ javac --module-path mods -d mods/com.house.brickhouse
src/com.house.brickhouse/module-info.java
src/com.house.brickhouse/com/house/brickhouse/House1.java
src/com.house.brickhouse/com/house/brickhouse/House2.java

Now we run the House1 example:

$ java --module-path mods -m com.house.brickhouse/com.house.brickhouse.House1

Output:

My single-level house will need 18000 bricks

Then we run the House2 example:

$ java --module-path mods -m com.house.brickhouse/com.house.brickhouse.House2

Output:

My two-level house will need 36000 bricks

Introducing a New Module

Now, let’s expand our project by introducing a new module that provides various types of bricks. We’ll call this module com.house.bricktypes, and it will include different classes for different types of bricks. Here’s the new directory structure for the com.house.bricktypes module:

src
└── com.house.bricktypes
    ├── com
    │   └── house
    │       └── bricktypes
    │           ├── ClayBrick.java
    │           └── ConcreteBrick.java
    └── module-info.java

com.house.bricktypes:
    module-info.java:

module com.house.bricktypes {
    exports com.house.bricktypes;
}

The ClayBrick.java and ConcreteBrick.java classes will define the properties and methods for their respective brick types.

ClayBrick.java:

package com.house.bricktypes;

public class ClayBrick {
    public static int getBricksPerSquareMeter() {
        return 60;
    }
}

ConcreteBrick.java:

package com.house.bricktypes;

public class ConcreteBrick {
    public static int getBricksPerSquareMeter() {
        return 50;
    }
}

With the new module in place, we need to update our existing modules to make use of these new brick types. Let’s start by updating the module-info.java file in the com.house.brickhouse module:

module com.house.brickhouse {
    requires com.house.bricks;
    requires com.house.bricktypes;
    exports com.house.brickhouse;
}

We modify the House1.java and House2.java files to use the new brick types.

House1.java:

package com.house.brickhouse;
import com.house.bricks.Story;
import com.house.bricktypes.ClayBrick;

public class House1 {
    public static void main(String[] args) {
        int bricksPerSquareMeter = ClayBrick.getBricksPerSquareMeter();
        System.out.println("My single-level house will need "
                            + Story.count(1, bricksPerSquareMeter) + " clay bricks");
    }
}

House2.java:

package com.house.brickhouse;
import com.house.bricks.Story;
import com.house.bricktypes.ConcreteBrick;

public class House2 {
    public static void main(String[] args) {
        int bricksPerSquareMeter = ConcreteBrick.getBricksPerSquareMeter();
        System.out.println("My two-level house will need "
                            + Story.count(2, bricksPerSquareMeter) + " concrete bricks");
    }
}

By making these changes, we’re allowing our House1 and House2 classes to use different types of bricks, which adds more flexibility to our program. Let’s now update the Story.java class in the com.house.bricks module to accept the bricks per square meter:

package com.house.bricks;

public class Story {
    public static int count(int level, int bricksPerSquareMeter) {
        return level * bricksPerSquareMeter * 300;
    }
}

Now that we’ve updated our modules, let’s compile and run them to see the changes in action:

  • Create a new mods directory for the com.house.bricktypes module:

    $ mkdir mods/com.house.bricktypes
  • Compile the com.house.bricktypes module:

    $ javac -d mods/com.house.bricktypes
    src/com.house.bricktypes/module-info.java
    src/com.house.bricktypes/com/house/bricktypes/*.java
  • Recompile the com.house.bricks and com.house.brickhouse modules:

    $ javac --module-path mods -d mods/com.house.bricks
    src/com.house.bricks/module-info.java src/com.house.bricks/com/house/bricks/Story.java
    
    $ javac --module-path mods -d mods/com.house.brickhouse
    src/com.house.brickhouse/module-info.java
    src/com.house.brickhouse/com/house/brickhouse/House1.java
    src/com.house.brickhouse/com/house/brickhouse/House2.java

With these updates, our program is now more versatile and can handle different types of bricks. This is just one example of how the modular system in Java can make our code more flexible and maintainable.

Figure 3.1

Figure 3.1 Class Diagram to Show the Relationships Between Modules

Let’s now visualize these relationships with a class diagram. Figure 3.1 includes the new module com.house.bricktypes, and the arrows represent “Uses” relationships. House1 uses Story and ClayBrick, whereas House2 uses Story and ConcreteBrick. As a result, instances of House1 and House2 will contain references to instances of Story and either ClayBrick or ConcreteBrick, respectively. They use these references to interact with the methods and attributes of the Story, ClayBrick, and ConcreteBrick classes. Here are more details:

  • House1 and House2: These classes represent two different types of houses. Both classes have the following attributes:

    • name: A string representing the name of the house.

    • levels: An integer representing the number of levels in the house.

    • story: An instance of the Story class representing a level of the house.

    • main(String[] args): The entry method for the class, which acts as the initial kick-starter for the application’s execution.

  • Story: This class represents a level in a house. It has the following attributes:

    • level: An integer representing the level number.

    • bricksPerSquareMeter: An integer representing the number of bricks per square meter for the level.

    • count(int level, int bricksPerSquareMeter): A method that calculates the total number of bricks required for a given level and bricks per square meter.

  • ClayBrick and ConcreteBrick: These classes represent two different types of bricks. Both classes have the following attributes:

    • getBricksPerSquareMeter(): A static method that returns the number of bricks per square meter. This method is called by the houses to obtain the value needed for calculations in the Story class.

Next, let’s look at the use-case diagram of the Brick House Construction system with the House Owner as the actor and Clay Brick and Concrete Brick as the systems (Figure 3.2). This diagram illustrates how the House Owner interacts with the system to calculate the number of bricks required for different types of houses and choose the type of bricks for the construction.

Figure 3.2

Figure 3.2 Use-Case Diagram of Brick House Construction

Here’s more information on the elements of the use-case diagram:

  • House Owner: This is the actor who wants to build a house. The House Owner interacts with the Brick House Construction system in the following ways:

    • Calculate Bricks for House 1: The House Owner uses the system to calculate the number of bricks required to build House 1.

    • Calculate Bricks for House 2: The House Owner uses the system to calculate the number of bricks required to build House 2.

    • Choose Brick Type: The House Owner uses the system to select the type of bricks to be used for the construction.

  • Brick House Construction: This system helps the House Owner in the construction process. It provides the following use cases:

    • Calculate Bricks for House 1: This use case calculates the number of bricks required for House 1. It interacts with both the Clay Brick and Concrete Brick systems to get the necessary data.

    • Calculate Bricks for House 2: This use case calculates the number of bricks required for House 2. It also interacts with both the Clay Brick and Concrete Brick systems to get the necessary data.

    • Choose Brick Type: This use case allows the House Owner to choose the type of bricks for the construction.

  • Clay Brick and Concrete Brick: These systems provide the data (e.g., size, cost) to the Brick House Construction system that is needed to calculate the number of bricks required for the construction of the houses.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020