SlideShare a Scribd company logo
Java & Beyond
Java 9
Mohammad Hossein Rimaz
K. N. Toosi University of Technology
KNTU Java User Group
Outline:
•JShell
•Modularity
•Other Java 9 Features
•Road Ahead
JShell
What?
• JShell is a REPL (Read-Evaluate-Print Loop), a command line
tool which allows developer to coding in java without
building projects in IDEs or compiling and running their short
code which is quite lengthy task
• If you are familiar with interpreted language like Python or
other JVM languages like Groovy or Scala the concept of
JShell is familiar to you.
Why?
• Good for new programmers and beginners
• Good for testing language features
JShell Commands:
• /list [all]
• /vars, /methods, /classes
• /edit
• /reset
• /set editor [notepad, gedit, …]
• /imports
• /exit
• /env [add module, classpath, …]
• /save, /open [mysession.jsh]
DEMO
Web Scraping with JSOUP and JShell
Modularity
Outline:
•What? & Why?
•How?
•Details
•Transitive Dependency
•Aggregator Module
•Services
•JDeps
What? & Why?
• Java 9 was delayed so many times because of Project Jigsaw.
• You might have been hearing a lot about modules,
modularity, and other stuff.
• What it’s all about?
• What the heck is modularization and what do we mean by a
modularized platform?
• What's the Java Platform Module System (JPMS) all about?
• Is it going to be a revolution in Java ecosystem?
What? & Why?
• Maintainability is one of the most significant concerns in
software design and evolution.
• We want a code base that is loosely coupled, highly cohesive,
extremely readable, and can be understandable at a glance.
• We design our classes and organize them in packages.
• When we have hundreds of packages, the dependencies
between them are not visible at one look.
• We need something more than packages to organize our
code base to make it more maintainable.
What? & Why?
• Another problem is the Java classpath and how it runs our
codes.
• All JAR classes and libraries are flattened into the classpath.
When these JAR files have multiple version of a class on the
runtime, the Java ClassLoader can load only one version of
that class. In this way, there is ambiguity about how your
program is going to work, and ambiguity is a bad thing. This
issue is so frequent that you might know it as “JAR Hell.”
• Inefficient, Insecure, and even Dangerous!
What? & Why?
• Another problem with the classpath is that it doesn’t follow
the “Fail First” principle.
• You may have missing classes that exist in the classpath, but
not in the production environment. Until you get
the JavaClassDefError exception at runtime, you can’t be
sure what is missing.
What? & Why?
• Finally, the big issue with the classpath is encapsulation.
Every class on the classpath has access to each other, and
this is an encapsulation violation.
• We want to hide our internal APIs, and that’s why we need
another level of encapsulation (“Strong Encapsulation”) and
control over the access to our classes in our packages.
Uses of JDK Internal APIs:
Taken from: https://www.slideshare.net/haochenglee/prepare-for-jdk-9
Uses of JDK Internal APIs:
What? & Why?
• Modules are going to fix these issues.
• What is a module? A module has a name, it groups related
code, and is self-contained.
• A module describes explicitly what it needs from other
modules and which part of it is visible to other modules.
What? & Why?
• In this manner, dependencies between modules are crystal
clear.
• We have Strong Encapsulation, which means we can hide
our internal APIs, and finally
• We now follow the “Fail First” principle. Therefore, when
there is a missing module or a conflict, you will get an error.
What? & Why?
• Modularizing the JDK allows JDK developers to manage the
huge complexity of it.
• When you write a tiny and straightforward application that
doesn’t use RMI, CORBA, Java EE, and other stuff, why do
you need a full, huge, and heavy JRE?
• Isn’t it wiser to have your runtime image only contain the
modules you need?
• Now with a modularized platform, it’s possible.
• Modularizing the JDK allows JDK developers to manage the
huge complexity of it.
• When you write a tiny and straightforward application that
doesn’t use RMI, CORBA, Java EE, and other stuff, why do
you need a full, huge, and heavy JRE?
• Isn’t it wiser to have your runtime image only contain the
modules you need?
• Now with a modularized platform, it’s possible.
What? & Why?
What? & Why?
• This is how the JDK now looks.
• On the bottom, we have the “java.base” module that every
other module implicitly or explicitly depends on.
• As you can see, this dependency graph is a DAG, which
means no circular dependencies allowed [at compile-time!].
What? & Why?
What? & Why?
Review
•Strong Encapsulation.
•Handling Complexity through Modularization.
•Fail-First: No JAR HELL, No Conflict, No
ClassDefFoundError Exception.
•Custom Runtime Images, Smaller Footprint,
Better Performance.
How?
• The picture shows
essentially what a
module is.
• Each module has a
module descriptor called
“module-info.java.”
How?
• In the module-info.java
file, you describe the
name of your module,
what it requires to work,
and which packages are
visible outside this
module.
• So in its simplest form,
the module-info.java
looks like this image:
How?
Commands
• java --list-modules
List of JDK’s modules
How?
Commands
• java --describe-module
Show module’s
descriptor
DEMO
Create Our First Modular Application
Using Command-Line
How?
Create Our First Modular Application Using Command-Line
• Project Structure
How?
Create Our First Modular Application Using Command-Line
• Compiling
javac --module-source-
path src -d out
srckntujug.hellomodulei
rackntuHelloWorld.java
srckntujug.hellomodule
module-info.java
How?
Create Our First Modular Application Using Command-Line
• Running
java --module-path out -m
kntujug.hellomodule/ir.ac.kntu.HelloWorld
-> Hello World
How?
Create Our First Modular Application Using Command-Line
• Create Custom Runtime Image
jlink --module-path
"%JAVA_HOME%jmods;out" --add-modules
kntujug.hellomodule --output runtimeimage
How?
Create Our First Modular Application Using Command-Line
How?
Create Our First Modular Application Using Command-Line
$ runtimeimagebinjava --describe-module kntujug.hellomodule
kntujug.hellomodule
requires java.base mandated
contains ir.ac.kntu
$ runtimeimagebinjava --module kntujug.hellomodule/ir.ac.kntu.HelloWorld
Hello World
$ runtimeimagebinjava --list-modules
java.base@9.0.1
kntujug.hellomodule
DEMO
AdoptOpenJDK/Session1/01,02,03,04,05
https://github.com/AdoptOpenJDK/jdk9-jigsaw
Details
Transitive Dependency
java.sql
java.xml
java.logging
Application
Requires Transitive
Requires Transitive
Requires
Details
Transitive Dependency
Details
Naming
• For Application Modules
• Short & memorable names
• Example: applicationname.modulename
• For Library Developer
• Global Uniqueness
• Reverse DNS
• Example: ir.ac.kntu.applicationname.modulename
Details
Aggregator Module
java.se
java.logging
java.sqlApplication
java.desktop
Requires Transitive
Requires Transitive
Requires
Details
Aggregator Module
Details
Aggregator Module
Details
Services
• Suppose we have an application that requests to all online
taxi services and request the cheapest taxi service.
chipsi.napsi chipsi.tapsi chipsi.maxsi
chipsi.taxifinder
Details
Services
chipsi.napsi chipsi.tapsi chipsi.maxsi
chipsi.taxifinder
chipsi.discovery
module chipsi.taxifinder{
requires chipsi.discovery;
requires chipsi.maxsi;
requires chipsi.tapsi;
requires chipsi.napsi;
}
DEMO
Show Chipsi Modular Application
Details
Services
• All of these approaches are wrong.
• Two known approach
• Factory Pattern : Still we should know about implementations
name.
• Dependency Injection
• But we can use Services and ServiceLoader
Details
Services
chipsi.napsi chipsi.tapsi chipsi.maxsi
chipsi.taxifinder
chipsi.discovery
module chipsi.taxifinder{
uses chipsi.discovery.Service;
}
module chipsi.discovery{
exports chipsi.discovery;
}
module chipsi.napsi{
provides chipsi.discovery.Service with
com.napsi.NapsiServiceProvider;
}
DEMO
Show Chipsi Modular Application
Using Services and ServiceLoader
Details
• And so many advance features like
• Optional Dependencies
• Add Modules at Runtime
• Resource Encapsulation
• ServiceLoader Life Cycle
• Auto Modules
• Unnamed Modules
• You can refer to the provided references to learn about
them.
Other
Features
Other New Features
•Collections Factory
•HTTP/2, WebSocket, HTTP/1.1
•Stream API Improvements
•Reactive Streams with Flow API
•StackWalker
Other New Features
•JavaFX Enhancement and new APIs
•G1 Garbage Collector as Default GC
•Multi-Release JAR Files [JEP-238]
•Enhanced Deprecation
•HTML5 JavaDoc
•And so many other features and enhancements
…
DEMO
Async HTTP Request
Road Ahead
Resources
• Java 9 Modularity
Patterns and Practices for
developing maintainable
applications
By Sander Mak & Paul Bakker
• Many examples and
descriptions of this slides taken
from this book
Resources
• Java 9 Recipes
A Problem-Solution Approach
By Josh Juneau
• A General Book about Java 9
Resources
• Java 9 Modularity Revealed
Project Jigsaw and Scalable
Java Applications
By Alexandru Jecan
• Yet another in depth java 9
modularity book.
JavaOne 2017 Talks:
• Modules in One Lesson
by Mark Reinhold
• Migration to Modules
by Mark Reinhold
• Modules and Services
by Alex Buckley
• Designing for Modularity with Java 9
by Sander Mak and Paul Bakker
Hands On Code:
Work with this GitHub repository.
https://github.com/AdoptOpenJDK/jdk9-jigsaw
Q&A
Thanks for
Your
Attendance

More Related Content

What's hot (20)

PPT
Hibernate introduction
Sagar Verma
 
PPTX
Java For beginners and CSIT and IT students
Partnered Health
 
PDF
Java and Java platforms
Ilio Catallo
 
DOCX
Java Tutorial to Learn Java Programming
business Corporate
 
PPTX
Lecture from javaday.bg by Nayden Gochev/ Ivan Ivanov and Mitia Alexandrov
Nayden Gochev
 
PPTX
Software Uni Conf October 2014
Nayden Gochev
 
PPTX
Java 8 parallel stream
Yung Chieh Tsai
 
PDF
History of java
Mani Sarkar
 
PPTX
SoftwareUniversity seminar fast REST Api with Spring
Nayden Gochev
 
PPT
Java introduction
Sagar Verma
 
DOCX
Introduction to java
jayc8586
 
PDF
Top 100 Java Interview Questions with Detailed Answers
Whizlabs
 
ODP
Java 9 Features
NexThoughts Technologies
 
PDF
Core Java Tutorial
eMexo Technologies
 
PPTX
JAVA 8 Parallel Stream
Tengwen Wang
 
PDF
Core Java
Prakash Dimmita
 
KEY
Modern Java Concurrency
Ben Evans
 
PDF
Java Threads Tutorial | Multithreading In Java Tutorial | Java Tutorial For B...
Edureka!
 
PPTX
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Sagar Verma
 
PPTX
Java byte code & virtual machine
Laxman Puri
 
Hibernate introduction
Sagar Verma
 
Java For beginners and CSIT and IT students
Partnered Health
 
Java and Java platforms
Ilio Catallo
 
Java Tutorial to Learn Java Programming
business Corporate
 
Lecture from javaday.bg by Nayden Gochev/ Ivan Ivanov and Mitia Alexandrov
Nayden Gochev
 
Software Uni Conf October 2014
Nayden Gochev
 
Java 8 parallel stream
Yung Chieh Tsai
 
History of java
Mani Sarkar
 
SoftwareUniversity seminar fast REST Api with Spring
Nayden Gochev
 
Java introduction
Sagar Verma
 
Introduction to java
jayc8586
 
Top 100 Java Interview Questions with Detailed Answers
Whizlabs
 
Java 9 Features
NexThoughts Technologies
 
Core Java Tutorial
eMexo Technologies
 
JAVA 8 Parallel Stream
Tengwen Wang
 
Core Java
Prakash Dimmita
 
Modern Java Concurrency
Ben Evans
 
Java Threads Tutorial | Multithreading In Java Tutorial | Java Tutorial For B...
Edureka!
 
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Sagar Verma
 
Java byte code & virtual machine
Laxman Puri
 

Viewers also liked (10)

PDF
Lambda Expressions in Java
Erhan Bagdemir
 
PPTX
Java 9 Modules: The Duke Yet Lives That OSGi Shall Depose
Nikita Lipsky
 
PDF
Java9 Beyond Modularity - Java 9 más allá de la modularidad
David Gómez García
 
PPT
Java 8 Streams
Manvendra Singh
 
PPTX
Lambda Expressions in Java 8
icarter09
 
PDF
Java 8 Stream API. A different way to process collections.
David Gómez García
 
PDF
Java 8 Lambda Expressions & Streams
NewCircle Training
 
PDF
Parallel streams in java 8
David Gómez García
 
PPTX
The do's and don'ts with java 9 (Devoxx 2017)
Robert Scholte
 
PDF
Real World Java 9
Trisha Gee
 
Lambda Expressions in Java
Erhan Bagdemir
 
Java 9 Modules: The Duke Yet Lives That OSGi Shall Depose
Nikita Lipsky
 
Java9 Beyond Modularity - Java 9 más allá de la modularidad
David Gómez García
 
Java 8 Streams
Manvendra Singh
 
Lambda Expressions in Java 8
icarter09
 
Java 8 Stream API. A different way to process collections.
David Gómez García
 
Java 8 Lambda Expressions & Streams
NewCircle Training
 
Parallel streams in java 8
David Gómez García
 
The do's and don'ts with java 9 (Devoxx 2017)
Robert Scholte
 
Real World Java 9
Trisha Gee
 
Ad

Similar to Java 9, JShell, and Modularity (20)

PPTX
Preparing for java 9 modules upload
Ryan Cuprak
 
PPTX
Modules in Java? Finally! (OpenJDK 9 Jigsaw, JSR376)
Mihail Stoynov
 
PDF
OpenJDK Penrose Presentation (JavaOne 2012)
David Bosschaert
 
KEY
Single Page Applications - Desert Code Camp 2012
Adam Mokan
 
PPTX
Introduction to Spring & Spring BootFramework
Kongu Engineering College, Perundurai, Erode
 
PPTX
Leaner microservices with Java 10
Arto Santala
 
PDF
Stackato v6
Jonas Brømsø
 
PDF
Java 9 / Jigsaw - AJUG/VJUG session
Mani Sarkar
 
PDF
Java modules
Rory Preddy
 
PDF
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Mani Sarkar
 
PPTX
Session 02 - Elements of Java Language
PawanMM
 
PPSX
Elements of Java Language
Hitesh-Java
 
PPT
Developing modular Java applications
Julien Dubois
 
PPTX
S/W Design and Modularity using Maven
Scheidt & Bachmann
 
PPTX
Generalization in Auto-Testing. How we put what we had into new Technological...
SQALab
 
PDF
Stackato v5
Jonas Brømsø
 
PDF
Java 8 selected updates
Vinay H G
 
PPTX
1.Intro--Why Java.pptx
YounasKhan542109
 
PDF
Angular 2 overview
Jesse Warden
 
PPTX
Using Apache Camel as AKKA
Johan Edstrom
 
Preparing for java 9 modules upload
Ryan Cuprak
 
Modules in Java? Finally! (OpenJDK 9 Jigsaw, JSR376)
Mihail Stoynov
 
OpenJDK Penrose Presentation (JavaOne 2012)
David Bosschaert
 
Single Page Applications - Desert Code Camp 2012
Adam Mokan
 
Introduction to Spring & Spring BootFramework
Kongu Engineering College, Perundurai, Erode
 
Leaner microservices with Java 10
Arto Santala
 
Stackato v6
Jonas Brømsø
 
Java 9 / Jigsaw - AJUG/VJUG session
Mani Sarkar
 
Java modules
Rory Preddy
 
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Mani Sarkar
 
Session 02 - Elements of Java Language
PawanMM
 
Elements of Java Language
Hitesh-Java
 
Developing modular Java applications
Julien Dubois
 
S/W Design and Modularity using Maven
Scheidt & Bachmann
 
Generalization in Auto-Testing. How we put what we had into new Technological...
SQALab
 
Stackato v5
Jonas Brømsø
 
Java 8 selected updates
Vinay H G
 
1.Intro--Why Java.pptx
YounasKhan542109
 
Angular 2 overview
Jesse Warden
 
Using Apache Camel as AKKA
Johan Edstrom
 
Ad

More from Mohammad Hossein Rimaz (7)

PDF
004 - JavaFX Tutorial - Event Handling
Mohammad Hossein Rimaz
 
PPTX
003 - JavaFX Tutorial - Layouts
Mohammad Hossein Rimaz
 
PDF
002- JavaFX Tutorial - Getting Started
Mohammad Hossein Rimaz
 
PDF
Quick introduction to scala
Mohammad Hossein Rimaz
 
PPTX
Continuous integration with Jenkins
Mohammad Hossein Rimaz
 
PPTX
Introduction to Scala
Mohammad Hossein Rimaz
 
ODP
JavaFX in Action Part I
Mohammad Hossein Rimaz
 
004 - JavaFX Tutorial - Event Handling
Mohammad Hossein Rimaz
 
003 - JavaFX Tutorial - Layouts
Mohammad Hossein Rimaz
 
002- JavaFX Tutorial - Getting Started
Mohammad Hossein Rimaz
 
Quick introduction to scala
Mohammad Hossein Rimaz
 
Continuous integration with Jenkins
Mohammad Hossein Rimaz
 
Introduction to Scala
Mohammad Hossein Rimaz
 
JavaFX in Action Part I
Mohammad Hossein Rimaz
 

Recently uploaded (20)

PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Digital Circuits, important subject in CS
contactparinay1
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 

Java 9, JShell, and Modularity

  • 1. Java & Beyond Java 9 Mohammad Hossein Rimaz K. N. Toosi University of Technology KNTU Java User Group
  • 4. What? • JShell is a REPL (Read-Evaluate-Print Loop), a command line tool which allows developer to coding in java without building projects in IDEs or compiling and running their short code which is quite lengthy task • If you are familiar with interpreted language like Python or other JVM languages like Groovy or Scala the concept of JShell is familiar to you.
  • 5. Why? • Good for new programmers and beginners • Good for testing language features
  • 6. JShell Commands: • /list [all] • /vars, /methods, /classes • /edit • /reset • /set editor [notepad, gedit, …] • /imports • /exit • /env [add module, classpath, …] • /save, /open [mysession.jsh]
  • 7. DEMO Web Scraping with JSOUP and JShell
  • 9. Outline: •What? & Why? •How? •Details •Transitive Dependency •Aggregator Module •Services •JDeps
  • 10. What? & Why? • Java 9 was delayed so many times because of Project Jigsaw. • You might have been hearing a lot about modules, modularity, and other stuff. • What it’s all about? • What the heck is modularization and what do we mean by a modularized platform? • What's the Java Platform Module System (JPMS) all about? • Is it going to be a revolution in Java ecosystem?
  • 11. What? & Why? • Maintainability is one of the most significant concerns in software design and evolution. • We want a code base that is loosely coupled, highly cohesive, extremely readable, and can be understandable at a glance. • We design our classes and organize them in packages. • When we have hundreds of packages, the dependencies between them are not visible at one look. • We need something more than packages to organize our code base to make it more maintainable.
  • 12. What? & Why? • Another problem is the Java classpath and how it runs our codes. • All JAR classes and libraries are flattened into the classpath. When these JAR files have multiple version of a class on the runtime, the Java ClassLoader can load only one version of that class. In this way, there is ambiguity about how your program is going to work, and ambiguity is a bad thing. This issue is so frequent that you might know it as “JAR Hell.” • Inefficient, Insecure, and even Dangerous!
  • 13. What? & Why? • Another problem with the classpath is that it doesn’t follow the “Fail First” principle. • You may have missing classes that exist in the classpath, but not in the production environment. Until you get the JavaClassDefError exception at runtime, you can’t be sure what is missing.
  • 14. What? & Why? • Finally, the big issue with the classpath is encapsulation. Every class on the classpath has access to each other, and this is an encapsulation violation. • We want to hide our internal APIs, and that’s why we need another level of encapsulation (“Strong Encapsulation”) and control over the access to our classes in our packages.
  • 15. Uses of JDK Internal APIs: Taken from: https://www.slideshare.net/haochenglee/prepare-for-jdk-9
  • 16. Uses of JDK Internal APIs:
  • 17. What? & Why? • Modules are going to fix these issues. • What is a module? A module has a name, it groups related code, and is self-contained. • A module describes explicitly what it needs from other modules and which part of it is visible to other modules.
  • 18. What? & Why? • In this manner, dependencies between modules are crystal clear. • We have Strong Encapsulation, which means we can hide our internal APIs, and finally • We now follow the “Fail First” principle. Therefore, when there is a missing module or a conflict, you will get an error.
  • 19. What? & Why? • Modularizing the JDK allows JDK developers to manage the huge complexity of it. • When you write a tiny and straightforward application that doesn’t use RMI, CORBA, Java EE, and other stuff, why do you need a full, huge, and heavy JRE? • Isn’t it wiser to have your runtime image only contain the modules you need? • Now with a modularized platform, it’s possible.
  • 20. • Modularizing the JDK allows JDK developers to manage the huge complexity of it. • When you write a tiny and straightforward application that doesn’t use RMI, CORBA, Java EE, and other stuff, why do you need a full, huge, and heavy JRE? • Isn’t it wiser to have your runtime image only contain the modules you need? • Now with a modularized platform, it’s possible. What? & Why?
  • 21. What? & Why? • This is how the JDK now looks. • On the bottom, we have the “java.base” module that every other module implicitly or explicitly depends on. • As you can see, this dependency graph is a DAG, which means no circular dependencies allowed [at compile-time!].
  • 23. What? & Why? Review •Strong Encapsulation. •Handling Complexity through Modularization. •Fail-First: No JAR HELL, No Conflict, No ClassDefFoundError Exception. •Custom Runtime Images, Smaller Footprint, Better Performance.
  • 24. How? • The picture shows essentially what a module is. • Each module has a module descriptor called “module-info.java.”
  • 25. How? • In the module-info.java file, you describe the name of your module, what it requires to work, and which packages are visible outside this module. • So in its simplest form, the module-info.java looks like this image:
  • 28. DEMO Create Our First Modular Application Using Command-Line
  • 29. How? Create Our First Modular Application Using Command-Line • Project Structure
  • 30. How? Create Our First Modular Application Using Command-Line • Compiling javac --module-source- path src -d out srckntujug.hellomodulei rackntuHelloWorld.java srckntujug.hellomodule module-info.java
  • 31. How? Create Our First Modular Application Using Command-Line • Running java --module-path out -m kntujug.hellomodule/ir.ac.kntu.HelloWorld -> Hello World
  • 32. How? Create Our First Modular Application Using Command-Line • Create Custom Runtime Image jlink --module-path "%JAVA_HOME%jmods;out" --add-modules kntujug.hellomodule --output runtimeimage
  • 33. How? Create Our First Modular Application Using Command-Line
  • 34. How? Create Our First Modular Application Using Command-Line $ runtimeimagebinjava --describe-module kntujug.hellomodule kntujug.hellomodule requires java.base mandated contains ir.ac.kntu $ runtimeimagebinjava --module kntujug.hellomodule/ir.ac.kntu.HelloWorld Hello World $ runtimeimagebinjava --list-modules [email protected] kntujug.hellomodule
  • 38. Details Naming • For Application Modules • Short & memorable names • Example: applicationname.modulename • For Library Developer • Global Uniqueness • Reverse DNS • Example: ir.ac.kntu.applicationname.modulename
  • 42. Details Services • Suppose we have an application that requests to all online taxi services and request the cheapest taxi service. chipsi.napsi chipsi.tapsi chipsi.maxsi chipsi.taxifinder
  • 43. Details Services chipsi.napsi chipsi.tapsi chipsi.maxsi chipsi.taxifinder chipsi.discovery module chipsi.taxifinder{ requires chipsi.discovery; requires chipsi.maxsi; requires chipsi.tapsi; requires chipsi.napsi; }
  • 45. Details Services • All of these approaches are wrong. • Two known approach • Factory Pattern : Still we should know about implementations name. • Dependency Injection • But we can use Services and ServiceLoader
  • 46. Details Services chipsi.napsi chipsi.tapsi chipsi.maxsi chipsi.taxifinder chipsi.discovery module chipsi.taxifinder{ uses chipsi.discovery.Service; } module chipsi.discovery{ exports chipsi.discovery; } module chipsi.napsi{ provides chipsi.discovery.Service with com.napsi.NapsiServiceProvider; }
  • 47. DEMO Show Chipsi Modular Application Using Services and ServiceLoader
  • 48. Details • And so many advance features like • Optional Dependencies • Add Modules at Runtime • Resource Encapsulation • ServiceLoader Life Cycle • Auto Modules • Unnamed Modules • You can refer to the provided references to learn about them.
  • 50. Other New Features •Collections Factory •HTTP/2, WebSocket, HTTP/1.1 •Stream API Improvements •Reactive Streams with Flow API •StackWalker
  • 51. Other New Features •JavaFX Enhancement and new APIs •G1 Garbage Collector as Default GC •Multi-Release JAR Files [JEP-238] •Enhanced Deprecation •HTML5 JavaDoc •And so many other features and enhancements …
  • 54. Resources • Java 9 Modularity Patterns and Practices for developing maintainable applications By Sander Mak & Paul Bakker • Many examples and descriptions of this slides taken from this book
  • 55. Resources • Java 9 Recipes A Problem-Solution Approach By Josh Juneau • A General Book about Java 9
  • 56. Resources • Java 9 Modularity Revealed Project Jigsaw and Scalable Java Applications By Alexandru Jecan • Yet another in depth java 9 modularity book.
  • 57. JavaOne 2017 Talks: • Modules in One Lesson by Mark Reinhold • Migration to Modules by Mark Reinhold • Modules and Services by Alex Buckley • Designing for Modularity with Java 9 by Sander Mak and Paul Bakker
  • 58. Hands On Code: Work with this GitHub repository. https://github.com/AdoptOpenJDK/jdk9-jigsaw
  • 59. Q&A