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

PDF
Java SE 9 modules (JPMS) - an introduction
Stephen Colebourne
 
PDF
Migrating to Java 9 Modules
Sander Mak (@Sander_Mak)
 
PDF
Migrating to java 9 modules
Paul Bakker
 
PPSX
Introduction to Java
Hitesh-Java
 
PPTX
Java introduction
The icfai university jaipur
 
PPSX
Java & advanced java
BASAVARAJ HUNSHAL
 
PDF
Working With Concurrency In Java 8
Heartin Jacob
 
PPTX
Core Java introduction | Basics | free course
Kernel Training
 
Java SE 9 modules (JPMS) - an introduction
Stephen Colebourne
 
Migrating to Java 9 Modules
Sander Mak (@Sander_Mak)
 
Migrating to java 9 modules
Paul Bakker
 
Introduction to Java
Hitesh-Java
 
Java introduction
The icfai university jaipur
 
Java & advanced java
BASAVARAJ HUNSHAL
 
Working With Concurrency In Java 8
Heartin Jacob
 
Core Java introduction | Basics | free course
Kernel Training
 

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
 
Ad

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)

PDF
A Journey through the JDKs (Java 9 to Java 11)
Markus Günther
 
PDF
Java SE 9 modules - an introduction (July 2018)
Stephen Colebourne
 
PDF
Haj 4344-java se 9 and the application server-1
Kevin Sutter
 
PPTX
Preparing for java 9 modules upload
Ryan Cuprak
 
PPTX
Java Platform Module System
Vignesh Ramesh
 
PPTX
Modern Java Workshop
Simon Ritter
 
PPTX
Java 9 Module System Introduction
Dan Stine
 
PDF
What's new in java 9?
Trayan Iliev
 
PPTX
Java 9 new features
Masudul Haque
 
PDF
JavaOne 2016: Life after Modularity
DanHeidinga
 
PDF
Java 9 preview
Ivan Krylov
 
PPTX
What’s expected in Java 9
Gal Marder
 
PPTX
Java 9: Deep Dive into Modularity and Dealing with Migration Issues
GlobalLogic Ukraine
 
PPTX
Java 9 Modularity and Project Jigsaw
Comsysto Reply GmbH
 
PDF
How can your applications benefit from Java 9?
EUR ING Ioannis Kolaxis MSc
 
PDF
What we can expect from Java 9 by Ivan Krylov
J On The Beach
 
PPTX
Java modulesystem
Marc Kassis
 
PDF
Java Core | Java 8 and OSGi Modularisation | Tim Ellison & Neil Bartlett
JAX London
 
PDF
Jax london 2011
njbartlett
 
PDF
Deep Dive Java 17 Devoxx UK
José Paumard
 
A Journey through the JDKs (Java 9 to Java 11)
Markus Günther
 
Java SE 9 modules - an introduction (July 2018)
Stephen Colebourne
 
Haj 4344-java se 9 and the application server-1
Kevin Sutter
 
Preparing for java 9 modules upload
Ryan Cuprak
 
Java Platform Module System
Vignesh Ramesh
 
Modern Java Workshop
Simon Ritter
 
Java 9 Module System Introduction
Dan Stine
 
What's new in java 9?
Trayan Iliev
 
Java 9 new features
Masudul Haque
 
JavaOne 2016: Life after Modularity
DanHeidinga
 
Java 9 preview
Ivan Krylov
 
What’s expected in Java 9
Gal Marder
 
Java 9: Deep Dive into Modularity and Dealing with Migration Issues
GlobalLogic Ukraine
 
Java 9 Modularity and Project Jigsaw
Comsysto Reply GmbH
 
How can your applications benefit from Java 9?
EUR ING Ioannis Kolaxis MSc
 
What we can expect from Java 9 by Ivan Krylov
J On The Beach
 
Java modulesystem
Marc Kassis
 
Java Core | Java 8 and OSGi Modularisation | Tim Ellison & Neil Bartlett
JAX London
 
Jax london 2011
njbartlett
 
Deep Dive Java 17 Devoxx UK
José Paumard
 

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
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
AbdullahSani29
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Test Bank, Solutions for Java How to Program, An Objects-Natural Approach, 12...
famaw19526
 
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
PDF
Doc9.....................................
SofiaCollazos
 
PDF
DevOps & Developer Experience Summer BBQ
AUGNYC
 
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
PDF
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
PDF
NewMind AI Monthly Chronicles - July 2025
NewMind AI
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
AbdullahSani29
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Test Bank, Solutions for Java How to Program, An Objects-Natural Approach, 12...
famaw19526
 
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
Doc9.....................................
SofiaCollazos
 
DevOps & Developer Experience Summer BBQ
AUGNYC
 
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
NewMind AI Monthly Chronicles - July 2025
NewMind AI
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 

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