ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Modules in Java? Finally!
Jigsaw
What is this talk all about? (Agenda)
? This talk is for a very important new feature in Java SE 9
? Code named Jigsaw, this feature modularizes the Java SE platform
? Agenda
? Who am I?
? Problems with monolithic java
? Solutions in Java SE 9
? Jigsaw in examples
? JDK9 Early Access with Jigsaw
? A modular example, transitivity
? Services and Custom JREs
Who am I? @mihailstoynov
? By day: sty.bz
? Java
? Security audits, web pen testing, sec tools
? Training, travelling ->
? By night: jug.bg
? Java evangelism
? Submitting Java patches, writing manuals,
early adoption
? jprime.io ¨C organize big java conf in Sofia
? Co-authoring books, university courses
? Weekends
? Bikes
Problems with a monolithic Java
Why do we need jigsaw? 1
? "Small" devices can run Java,
but JRE size is a problem
? Clouds don't like wasting resources
loading a large JRE full of
unnecessary classes
Why do we need jigsaw? 2
? JDK is messy
Why do we need jigsaw? 3
? Classpath is messy
Why do we need jigsaw? 4
? People use sun.misc.* or *.internal.* APIs, which was not intended
? Securing the platform is difficult if everyone can read anything
Problem: source code is monolithic 201
? JRE source code itself is monolithic ¨C it has no modules
? Solution (JEP 201)
? Reorganize mercurial repo
? src/share/classes/java/lang/Object.java
src/share/native/java/lang/Object.c
->
src/java.base/share/classes/java/lang/Object.java
src/java.base/share/native/java/lang/Object.c
? Rename solaris to unix
? Compile repo -> compile modules
? Enforce module boundaries at build time
Problem: JRE code is not modular 200
? JRE itself is not using modules
? Solution (JEP 200)
? Create modules for code governed by JCP (module java.base)
? Modules for other code in the JDK (module jdk.javadoc )
? Define requires public
? All reside in $JAVA_HOME/jmods
Offtopic: jmods are not for you
? .jmod format was created for the platform
? can have native code
? Overall very cool
? $ jmod list $JAVA_HOME/jmods/java.base.jmod
--list of classes¡ª-
--native code too (so, dylib)--
? $ jmod describe $JAVA_HOME/jmods/java.base.jmod
? Describes what it exports, what it conceals, who it exports it too
and stuff
Problem: JRE code is not modular 200
Check out the java.compact{1..3}
Problem: Internal APIs 260
? Many are using internal APIs (example: sun.misc.Unsafe)
? Solution (JEP 260)
? Provide safe alternative (other JEPs)
? Non critical (Base64Decoder) are encapsulated or deprecated
? Critical APIs (Unsafe) are rewritten and encapsulated (JEP 259)
Problem: JRE is too big 282
? The JRE is too big
? Some distributions are over 100MB
? In mobile devices: CPU is strong enough for java, but little space
? Solution (JEP 282)
? In Java 9 we can create a "custom runtime image"
? A tool that can do that is called jlink
? The same tool can also add our
application modules
? Only the ones we need
Problem: Put it all together 261 (376)
? JSR 376 (Java Platform Module System) proposes changes and
extensions to
? the Java programming language
? the Java virtual machine
? the standard Java APIs
? JSR 376 Will be implemented in JEP 261
? JCP = Java Community Process (IBM, SAP, RedHat "participate")
? JSR = Java Specification Request (specifies new standards, JCP)
? JEP = Java Enhancement Process (implementations, non JCP)
More problems
? The base classes had a lot of cyclic dependencies
? They had to be unwounded
? It took several years to specify the module format
? Several abandoned formats so far
? It took several years to specify the scope of Jigsaw
? For example no dynamic loading/unloading
? No luck for OSGi
? Mark Reinhold said that this will not be implemented soon
Jigsaw in examples
Modules
JDK9 Early Access with Jigsaw
? jdk9.java.net/jigsaw
pre-Java9 class visibility
? Until Java 9 a class had the following visibility "levels":
? public
? friendly, package private (includes protected)
? protected
? private
post-Java9 class visibility
? In Java 9 new levels of "public" are provided:
? public
? To all
? To some modules (we specify them)
? Only to our module
? friendly, package private (includes protected)
? protected
? private
Creating a simple module bz.sty.logger
? Important note: just like packages, module names are dir names
? module-info.java
module bz.sty.logger {
requires java.base; //implicit
exports bz.sty.logger;
}
? Logger.java
package bz.sty.logger;
public class Logger {
public void log(String message) {
System.out.println("Logger: "+message);
}
}
? Compilation
$ javac -d mods/ 
Logger/bz.sty.logger/bz/sty/logger/Logger.java 
Logger/bz.sty.logger/module-info.java
Referencing the log module bz.sty.main
? module-info.java:
module bz.sty.main {
requires bz.sty.logger; //implicit
//exports bz.sty.logger;
}
? Program.java
public class Program {
public void main(String... args) {
new Logger.log("Hello, World!");
}
}
? Compilation
$ javac -d mods 
-modulepath mods/ 
Main/bz.sty.main/bz/sty/main/Program.java 
Main/bz.sty.main/module-info.java
Compile multiple modules at once
$ javac 
-d mods/ 
-modulesourcepath Logger/:Main/ 
$(find Logger/ Main/ -name *.java)
? What did we do here?
? All source paths are in modulesourcepath
? We use a bit of bash magic to add all java files
? All should be deployed
Running a multi module app
$ java 
-modulepath mods/ 
-m bz.sty.main/bz.sty.main.Program
Logger: Hello, World!
Support for Jigsaw
? Maven, Gradle
? None
? IntelliJ IDEA, Eclipse
? None
? I use IDEA modules and duplicate the dependencies
? NetBeans
? http://wiki.netbeans.org/JDK9Support
? But I don't like it, so we won't use it
? When will it be released
? With Java SE 9
? Used to be mid'2016, jigsaw delayed it to Q1'2017
? http://www.java9countdown.xyz/
? Nobody believes it will be on time
Packaging
$ mkdir mlib
$ jar --create 
--file=mlib/bz.sty.logger@2.0.jar 
--module-version=199.0 
-C mods/bz.sty.logger .
$ jar --create 
--file=mlib/bz.sty.main.jar 
--main-class=bz.sty.main.Program 
-C mods/bz.sty.main .
$ java -mp mlib -m bz.sty.main
Logger: Hello, World!
What's in the jar?
$ jar --print-module-descriptor 
--file=mlib/bz.sty.main.jar
bz.sty.main
requires bz.sty.logger
requires mandated java.base
conceals bz.sty.main
main-class bz.sty.main.Program
$ jar --print-module-descriptor 
--file=mlib/bz.sty.logger@2.0.jar
bz.sty.logger@199.0
requires java.base
exports bz.sty.logger
Transitivity ("requires public")
? We create a new module, called prettylogger
? public class PrettyLogger extends Logger
? We change dependencies so that main ? prettylogger ? logger
? The new main:
public class Program {
public static void main(String... args) {
Logger logger = new PrettyLogger();
logger.log("Hello, World!");
}
}
? module-info.java
module bz.sty.prettylogger {
requires public bz.sty.logger;
exports bz.sty.prettylogger;
}
Quering the JDK module system
? $ java ¨Clistmods
? List all modules in the JDK
? Shows the version
? $ jmod describe $JAVA_HOME/jmods/java.base.jmod
? Shows a very detailed description
? $ jmod list $JAVA_HOME/jmods/java.base.jmod
? A list of all classes in the jmod
Jigsaw in examples
Services
Services
? Services allow for loose coupling between service
consumers modules and service providers modules
? Since Java SE 6, ServiceLoader API allows extending applications
? SL detects implementations of an interface and loads them
? This solution still works nicely with Java modules
? It is now sufficient the modules to be present on module-path
? Basically we define an interface/abstract class and we state that we
depend on their implementations
? we cant run without an implementation
? Other modules implement that interface/abstract class
? All is defined in the module-info
The module and the provider
module bz.sty.pluggablelogger {
exports bz.sty.pluggablelogger;
exports bz.sty.pluggablelogger.spi;
uses bz.sty.pluggablelogger.spi.PluggableLoggerProvider;
}
public abstract class PluggableLoggerProvider {
protected PluggableLoggerProvider() { }
public abstract PluggableLogger getPluggableLogger();
}
PluggableLogger
public abstract class PluggableLogger {
public static PluggableLogger get() {
ServiceLoader<PluggableLoggerProvider> sl
= ServiceLoader.load(PluggableLoggerProvider.class);
Iterator<PluggableLoggerProvider> iter = sl.iterator();
if (!iter.hasNext())
throw new RuntimeException("No service providers found!");
PluggableLoggerProvider provider = iter.next();
return provider.getPluggableLogger();
}
protected PluggableLogger() { }
public abstract void log(String message);
}
SuperLogger (implementing module)
module bz.sty.superlogger {
requires bz.sty.pluggablelogger;
exports bz.sty.superlogger;
provides bz.sty.pluggablelogger.spi.PluggableLoggerProvider
with bz.sty.superlogger.SuperLoggerProvider;
}
public class SuperLoggerProvider extends PluggableLoggerProvider {
public PluggableLogger getPluggableLogger() {
return new SuperLogger();
}
}
public class SuperLogger extends PluggableLogger {
public void log(String message) {
System.out.println("SuperLogger: " + message);
}
}
Running it all together
$ javac -d mods ¨Cmodulesourcepath 
PluggableLogger:PluggableLoggerImpl:PluggableLoggerMain
$(find Pluggable* -name *.java)
$ jar --create --file=X.jar ¨CC mods/mdl .
$ java -mp mlib/ -m bz.sty.pluggableloggerexample
SuperLogger: Hello, World!
$ java -Xdiag:resolver
Jigsaw in examples
Custom JREs
(Jlink)
Create a custom JRE
? And now a drum roll for the coolest feature
? We hinted that it's now possible to create custom JREs
? The tool is called JLINK
? jlink takes the smallest set of needed jars and jmods and creates a
new JRE in a dir. Very WOW
jlink in action (example)
$ jlink --modulepath $JAVA_HOME/jmods:mlib 
--addmods bz.sty.pluggablelogger,
bz.sty.superlogger,
bz.sty.pluggableloggerexample 
--output CustomVM
$ CustomVM/bin/java -listmods
$ CustomVM/bin/java -m bz.sty.pluggableloggerexample
SuperLogger: Hello, World!
$ du ¨Csh CustomVM/
30M
$ du -sh $JAVA_HOME
408M
Stuff we didn't discuss, but it's important
? Jdeps
? A tool to check if you use internal APIs
? Unnamed modules
? All old jars
? Automatic modules
? Making old jars to modules
? Migrating an application gradually
? Not difficult at all, but only after IntelliJ/Eclipse and maven support
? The console is difficult
? Mixing --classpath and --modulepath
? It takes some getting used to
Jigsaw in examples
Q&A

More Related Content

What's hot (20)

Coding Your Way to Java 12
Coding Your Way to Java 12Coding Your Way to Java 12
Coding Your Way to Java 12
Sander Mak (@Sander_Mak)
?
Faster Java EE Builds with Gradle
Faster Java EE Builds with GradleFaster Java EE Builds with Gradle
Faster Java EE Builds with Gradle
Ryan Cuprak
?
Developing modern java web applications with java ee 7 and angular js
Developing modern java web applications with java ee 7 and angular jsDeveloping modern java web applications with java ee 7 and angular js
Developing modern java web applications with java ee 7 and angular js
Shekhar Gulati
?
OpenJDK-Zulu talk at JEEConf'14
OpenJDK-Zulu talk at JEEConf'14OpenJDK-Zulu talk at JEEConf'14
OpenJDK-Zulu talk at JEEConf'14
Ivan Krylov
?
Java SE 9 modules (JPMS) - an introduction
Java SE 9 modules (JPMS) - an introductionJava SE 9 modules (JPMS) - an introduction
Java SE 9 modules (JPMS) - an introduction
Stephen Colebourne
?
Preparing for java 9 modules upload
Preparing for java 9 modules uploadPreparing for java 9 modules upload
Preparing for java 9 modules upload
Ryan Cuprak
?
Migrating to java 9 modules
Migrating to java 9 modulesMigrating to java 9 modules
Migrating to java 9 modules
Paul Bakker
?
Apache DeltaSpike the CDI toolbox
Apache DeltaSpike the CDI toolboxApache DeltaSpike the CDI toolbox
Apache DeltaSpike the CDI toolbox
Antoine Sabot-Durand
?
Workshop Framework(J2EE/OSGi/RCP)
Workshop Framework(J2EE/OSGi/RCP)Workshop Framework(J2EE/OSGi/RCP)
Workshop Framework(J2EE/OSGi/RCP)
Summer Lu
?
Java modularity: life after Java 9
Java modularity: life after Java 9Java modularity: life after Java 9
Java modularity: life after Java 9
Sander Mak (@Sander_Mak)
?
Web application development using Play Framework (with Java)
Web application development using Play Framework (with Java)Web application development using Play Framework (with Java)
Web application development using Play Framework (with Java)
Saeed Zarinfam
?
Preparing your code for Java 9
Preparing your code for Java 9Preparing your code for Java 9
Preparing your code for Java 9
Deepu Xavier
?
Desiging for Modularity with Java 9
Desiging for Modularity with Java 9Desiging for Modularity with Java 9
Desiging for Modularity with Java 9
Sander Mak (@Sander_Mak)
?
Developing Plug-Ins for NetBeans
Developing Plug-Ins for NetBeansDeveloping Plug-Ins for NetBeans
Developing Plug-Ins for NetBeans
elliando dias
?
MySQL DevOps at Outbrain
MySQL DevOps at OutbrainMySQL DevOps at Outbrain
MySQL DevOps at Outbrain
Shlomi Noach
?
Java11 New Features
Java11 New FeaturesJava11 New Features
Java11 New Features
Haim Michael
?
Enabling White-Box Reuse in a Pure Composition Language
Enabling White-Box Reuse in a Pure Composition LanguageEnabling White-Box Reuse in a Pure Composition Language
Enabling White-Box Reuse in a Pure Composition Language
elliando dias
?
The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015
jbandi
?
Choosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in ProdChoosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in Prod
Josh Padnick
?
Grails 3.0 Preview
Grails 3.0 PreviewGrails 3.0 Preview
Grails 3.0 Preview
graemerocher
?
Faster Java EE Builds with Gradle
Faster Java EE Builds with GradleFaster Java EE Builds with Gradle
Faster Java EE Builds with Gradle
Ryan Cuprak
?
Developing modern java web applications with java ee 7 and angular js
Developing modern java web applications with java ee 7 and angular jsDeveloping modern java web applications with java ee 7 and angular js
Developing modern java web applications with java ee 7 and angular js
Shekhar Gulati
?
OpenJDK-Zulu talk at JEEConf'14
OpenJDK-Zulu talk at JEEConf'14OpenJDK-Zulu talk at JEEConf'14
OpenJDK-Zulu talk at JEEConf'14
Ivan Krylov
?
Java SE 9 modules (JPMS) - an introduction
Java SE 9 modules (JPMS) - an introductionJava SE 9 modules (JPMS) - an introduction
Java SE 9 modules (JPMS) - an introduction
Stephen Colebourne
?
Preparing for java 9 modules upload
Preparing for java 9 modules uploadPreparing for java 9 modules upload
Preparing for java 9 modules upload
Ryan Cuprak
?
Migrating to java 9 modules
Migrating to java 9 modulesMigrating to java 9 modules
Migrating to java 9 modules
Paul Bakker
?
Workshop Framework(J2EE/OSGi/RCP)
Workshop Framework(J2EE/OSGi/RCP)Workshop Framework(J2EE/OSGi/RCP)
Workshop Framework(J2EE/OSGi/RCP)
Summer Lu
?
Web application development using Play Framework (with Java)
Web application development using Play Framework (with Java)Web application development using Play Framework (with Java)
Web application development using Play Framework (with Java)
Saeed Zarinfam
?
Preparing your code for Java 9
Preparing your code for Java 9Preparing your code for Java 9
Preparing your code for Java 9
Deepu Xavier
?
Developing Plug-Ins for NetBeans
Developing Plug-Ins for NetBeansDeveloping Plug-Ins for NetBeans
Developing Plug-Ins for NetBeans
elliando dias
?
MySQL DevOps at Outbrain
MySQL DevOps at OutbrainMySQL DevOps at Outbrain
MySQL DevOps at Outbrain
Shlomi Noach
?
Enabling White-Box Reuse in a Pure Composition Language
Enabling White-Box Reuse in a Pure Composition LanguageEnabling White-Box Reuse in a Pure Composition Language
Enabling White-Box Reuse in a Pure Composition Language
elliando dias
?
The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015
jbandi
?
Choosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in ProdChoosing the Right Framework for Running Docker Containers in Prod
Choosing the Right Framework for Running Docker Containers in Prod
Josh Padnick
?

Similar to Modules in Java? Finally! (OpenJDK 9 Jigsaw, JSR376) (20)

What we can expect from Java 9 by Ivan Krylov
What we can expect from Java 9 by Ivan KrylovWhat we can expect from Java 9 by Ivan Krylov
What we can expect from Java 9 by Ivan Krylov
J On The Beach
?
Java 9, JShell, and Modularity
Java 9, JShell, and ModularityJava 9, JShell, and Modularity
Java 9, JShell, and Modularity
Mohammad Hossein Rimaz
?
Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)
Martijn Verburg
?
OpenJDK Penrose Presentation (JavaOne 2012)
OpenJDK Penrose Presentation (JavaOne 2012)OpenJDK Penrose Presentation (JavaOne 2012)
OpenJDK Penrose Presentation (JavaOne 2012)
David Bosschaert
?
Java 9 / Jigsaw - AJUG/VJUG session
Java 9 / Jigsaw - AJUG/VJUG  sessionJava 9 / Jigsaw - AJUG/VJUG  session
Java 9 / Jigsaw - AJUG/VJUG session
Mani Sarkar
?
Leaner microservices with Java 10
Leaner microservices with Java 10Leaner microservices with Java 10
Leaner microservices with Java 10
Arto Santala
?
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Java 9 / Jigsaw - LJC / VJUG session (hackday session)Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Mani Sarkar
?
The Diabolical Developer's Guide to Surviving Java 9
The Diabolical Developer's Guide to Surviving Java 9The Diabolical Developer's Guide to Surviving Java 9
The Diabolical Developer's Guide to Surviving Java 9
jClarity
?
Java Platform Module System
Java Platform Module SystemJava Platform Module System
Java Platform Module System
Vignesh Ramesh
?
Java9 and the impact on Maven Projects (JFall 2016)
Java9 and the impact on Maven Projects (JFall 2016)Java9 and the impact on Maven Projects (JFall 2016)
Java9 and the impact on Maven Projects (JFall 2016)
Robert Scholte
?
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Modularity of The Java Platform Javaday (http://javaday.org.ua/)Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Martin Toshev
?
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Martin Toshev
?
Module, AMD, RequireJS
Module, AMD, RequireJSModule, AMD, RequireJS
Module, AMD, RequireJS
‚¥¸ñ ¸ß
?
Jigsaw - Javaforum 2015Q4
Jigsaw - Javaforum 2015Q4Jigsaw - Javaforum 2015Q4
Jigsaw - Javaforum 2015Q4
Rikard Thulin
?
Java 7 Modularity: a View from the Gallery
Java 7 Modularity: a View from the GalleryJava 7 Modularity: a View from the Gallery
Java 7 Modularity: a View from the Gallery
njbartlett
?
Google App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and GaelykGoogle App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and Gaelyk
Guillaume Laforge
?
Java Basics
Java BasicsJava Basics
Java Basics
Fahad Shahzad
?
Modular Java
Modular JavaModular Java
Modular Java
Martin Toshev
?
OOP with Java
OOP with JavaOOP with Java
OOP with Java
OmegaHub
?
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
Om Ganesh
?
What we can expect from Java 9 by Ivan Krylov
What we can expect from Java 9 by Ivan KrylovWhat we can expect from Java 9 by Ivan Krylov
What we can expect from Java 9 by Ivan Krylov
J On The Beach
?
Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)
Martijn Verburg
?
OpenJDK Penrose Presentation (JavaOne 2012)
OpenJDK Penrose Presentation (JavaOne 2012)OpenJDK Penrose Presentation (JavaOne 2012)
OpenJDK Penrose Presentation (JavaOne 2012)
David Bosschaert
?
Java 9 / Jigsaw - AJUG/VJUG session
Java 9 / Jigsaw - AJUG/VJUG  sessionJava 9 / Jigsaw - AJUG/VJUG  session
Java 9 / Jigsaw - AJUG/VJUG session
Mani Sarkar
?
Leaner microservices with Java 10
Leaner microservices with Java 10Leaner microservices with Java 10
Leaner microservices with Java 10
Arto Santala
?
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Java 9 / Jigsaw - LJC / VJUG session (hackday session)Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Java 9 / Jigsaw - LJC / VJUG session (hackday session)
Mani Sarkar
?
The Diabolical Developer's Guide to Surviving Java 9
The Diabolical Developer's Guide to Surviving Java 9The Diabolical Developer's Guide to Surviving Java 9
The Diabolical Developer's Guide to Surviving Java 9
jClarity
?
Java Platform Module System
Java Platform Module SystemJava Platform Module System
Java Platform Module System
Vignesh Ramesh
?
Java9 and the impact on Maven Projects (JFall 2016)
Java9 and the impact on Maven Projects (JFall 2016)Java9 and the impact on Maven Projects (JFall 2016)
Java9 and the impact on Maven Projects (JFall 2016)
Robert Scholte
?
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Modularity of The Java Platform Javaday (http://javaday.org.ua/)Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Martin Toshev
?
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Martin Toshev
?
Jigsaw - Javaforum 2015Q4
Jigsaw - Javaforum 2015Q4Jigsaw - Javaforum 2015Q4
Jigsaw - Javaforum 2015Q4
Rikard Thulin
?
Java 7 Modularity: a View from the Gallery
Java 7 Modularity: a View from the GalleryJava 7 Modularity: a View from the Gallery
Java 7 Modularity: a View from the Gallery
njbartlett
?
Google App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and GaelykGoogle App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and Gaelyk
Guillaume Laforge
?
OOP with Java
OOP with JavaOOP with Java
OOP with Java
OmegaHub
?
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
Om Ganesh
?

Recently uploaded (20)

Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
?
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
?
GIS Mapping Caddlance Portfolio 2025 .pdf
GIS Mapping Caddlance Portfolio 2025 .pdfGIS Mapping Caddlance Portfolio 2025 .pdf
GIS Mapping Caddlance Portfolio 2025 .pdf
sonam254547
?
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
?
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
?
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptxDAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
GellaBenson1
?
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
?
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy?n H?i
?
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
ssuserb91a20
?
Mastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdfMastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdf
Brion Mario
?
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
?
Telehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health careTelehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health care
Dr INBAMALAR T M
?
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
?
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
?
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
?
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
?
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
?
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
?
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
?
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
?
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
?
GIS Mapping Caddlance Portfolio 2025 .pdf
GIS Mapping Caddlance Portfolio 2025 .pdfGIS Mapping Caddlance Portfolio 2025 .pdf
GIS Mapping Caddlance Portfolio 2025 .pdf
sonam254547
?
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
?
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
?
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptxDAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
GellaBenson1
?
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
?
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy?n H?i
?
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
Chapter1-Introduction ¦¥¦É¦Ò¦Á¦Ã¦Ø¦Ã¦É¦Ê?? ?¦Í¦Í¦Ï¦É¦Å?
ssuserb91a20
?
Mastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdfMastering Secure Login Mechanisms for React Apps.pdf
Mastering Secure Login Mechanisms for React Apps.pdf
Brion Mario
?
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
?
Telehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health careTelehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health care
Dr INBAMALAR T M
?
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
?
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
?
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
?
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
?
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
?
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
?
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
?

Modules in Java? Finally! (OpenJDK 9 Jigsaw, JSR376)

  • 1. Modules in Java? Finally! Jigsaw
  • 2. What is this talk all about? (Agenda) ? This talk is for a very important new feature in Java SE 9 ? Code named Jigsaw, this feature modularizes the Java SE platform ? Agenda ? Who am I? ? Problems with monolithic java ? Solutions in Java SE 9 ? Jigsaw in examples ? JDK9 Early Access with Jigsaw ? A modular example, transitivity ? Services and Custom JREs
  • 3. Who am I? @mihailstoynov ? By day: sty.bz ? Java ? Security audits, web pen testing, sec tools ? Training, travelling -> ? By night: jug.bg ? Java evangelism ? Submitting Java patches, writing manuals, early adoption ? jprime.io ¨C organize big java conf in Sofia ? Co-authoring books, university courses ? Weekends ? Bikes
  • 4. Problems with a monolithic Java
  • 5. Why do we need jigsaw? 1 ? "Small" devices can run Java, but JRE size is a problem ? Clouds don't like wasting resources loading a large JRE full of unnecessary classes
  • 6. Why do we need jigsaw? 2 ? JDK is messy
  • 7. Why do we need jigsaw? 3 ? Classpath is messy
  • 8. Why do we need jigsaw? 4 ? People use sun.misc.* or *.internal.* APIs, which was not intended ? Securing the platform is difficult if everyone can read anything
  • 9. Problem: source code is monolithic 201 ? JRE source code itself is monolithic ¨C it has no modules ? Solution (JEP 201) ? Reorganize mercurial repo ? src/share/classes/java/lang/Object.java src/share/native/java/lang/Object.c -> src/java.base/share/classes/java/lang/Object.java src/java.base/share/native/java/lang/Object.c ? Rename solaris to unix ? Compile repo -> compile modules ? Enforce module boundaries at build time
  • 10. Problem: JRE code is not modular 200 ? JRE itself is not using modules ? Solution (JEP 200) ? Create modules for code governed by JCP (module java.base) ? Modules for other code in the JDK (module jdk.javadoc ) ? Define requires public ? All reside in $JAVA_HOME/jmods
  • 11. Offtopic: jmods are not for you ? .jmod format was created for the platform ? can have native code ? Overall very cool ? $ jmod list $JAVA_HOME/jmods/java.base.jmod --list of classes¡ª- --native code too (so, dylib)-- ? $ jmod describe $JAVA_HOME/jmods/java.base.jmod ? Describes what it exports, what it conceals, who it exports it too and stuff
  • 12. Problem: JRE code is not modular 200 Check out the java.compact{1..3}
  • 13. Problem: Internal APIs 260 ? Many are using internal APIs (example: sun.misc.Unsafe) ? Solution (JEP 260) ? Provide safe alternative (other JEPs) ? Non critical (Base64Decoder) are encapsulated or deprecated ? Critical APIs (Unsafe) are rewritten and encapsulated (JEP 259)
  • 14. Problem: JRE is too big 282 ? The JRE is too big ? Some distributions are over 100MB ? In mobile devices: CPU is strong enough for java, but little space ? Solution (JEP 282) ? In Java 9 we can create a "custom runtime image" ? A tool that can do that is called jlink ? The same tool can also add our application modules ? Only the ones we need
  • 15. Problem: Put it all together 261 (376) ? JSR 376 (Java Platform Module System) proposes changes and extensions to ? the Java programming language ? the Java virtual machine ? the standard Java APIs ? JSR 376 Will be implemented in JEP 261 ? JCP = Java Community Process (IBM, SAP, RedHat "participate") ? JSR = Java Specification Request (specifies new standards, JCP) ? JEP = Java Enhancement Process (implementations, non JCP)
  • 16. More problems ? The base classes had a lot of cyclic dependencies ? They had to be unwounded ? It took several years to specify the module format ? Several abandoned formats so far ? It took several years to specify the scope of Jigsaw ? For example no dynamic loading/unloading ? No luck for OSGi ? Mark Reinhold said that this will not be implemented soon
  • 18. JDK9 Early Access with Jigsaw ? jdk9.java.net/jigsaw
  • 19. pre-Java9 class visibility ? Until Java 9 a class had the following visibility "levels": ? public ? friendly, package private (includes protected) ? protected ? private
  • 20. post-Java9 class visibility ? In Java 9 new levels of "public" are provided: ? public ? To all ? To some modules (we specify them) ? Only to our module ? friendly, package private (includes protected) ? protected ? private
  • 21. Creating a simple module bz.sty.logger ? Important note: just like packages, module names are dir names ? module-info.java module bz.sty.logger { requires java.base; //implicit exports bz.sty.logger; } ? Logger.java package bz.sty.logger; public class Logger { public void log(String message) { System.out.println("Logger: "+message); } } ? Compilation $ javac -d mods/ Logger/bz.sty.logger/bz/sty/logger/Logger.java Logger/bz.sty.logger/module-info.java
  • 22. Referencing the log module bz.sty.main ? module-info.java: module bz.sty.main { requires bz.sty.logger; //implicit //exports bz.sty.logger; } ? Program.java public class Program { public void main(String... args) { new Logger.log("Hello, World!"); } } ? Compilation $ javac -d mods -modulepath mods/ Main/bz.sty.main/bz/sty/main/Program.java Main/bz.sty.main/module-info.java
  • 23. Compile multiple modules at once $ javac -d mods/ -modulesourcepath Logger/:Main/ $(find Logger/ Main/ -name *.java) ? What did we do here? ? All source paths are in modulesourcepath ? We use a bit of bash magic to add all java files ? All should be deployed
  • 24. Running a multi module app $ java -modulepath mods/ -m bz.sty.main/bz.sty.main.Program Logger: Hello, World!
  • 25. Support for Jigsaw ? Maven, Gradle ? None ? IntelliJ IDEA, Eclipse ? None ? I use IDEA modules and duplicate the dependencies ? NetBeans ? http://wiki.netbeans.org/JDK9Support ? But I don't like it, so we won't use it ? When will it be released ? With Java SE 9 ? Used to be mid'2016, jigsaw delayed it to Q1'2017 ? http://www.java9countdown.xyz/ ? Nobody believes it will be on time
  • 26. Packaging $ mkdir mlib $ jar --create --file=mlib/bz.sty.logger@2.0.jar --module-version=199.0 -C mods/bz.sty.logger . $ jar --create --file=mlib/bz.sty.main.jar --main-class=bz.sty.main.Program -C mods/bz.sty.main . $ java -mp mlib -m bz.sty.main Logger: Hello, World!
  • 27. What's in the jar? $ jar --print-module-descriptor --file=mlib/bz.sty.main.jar bz.sty.main requires bz.sty.logger requires mandated java.base conceals bz.sty.main main-class bz.sty.main.Program $ jar --print-module-descriptor --file=mlib/bz.sty.logger@2.0.jar bz.sty.logger@199.0 requires java.base exports bz.sty.logger
  • 28. Transitivity ("requires public") ? We create a new module, called prettylogger ? public class PrettyLogger extends Logger ? We change dependencies so that main ? prettylogger ? logger ? The new main: public class Program { public static void main(String... args) { Logger logger = new PrettyLogger(); logger.log("Hello, World!"); } } ? module-info.java module bz.sty.prettylogger { requires public bz.sty.logger; exports bz.sty.prettylogger; }
  • 29. Quering the JDK module system ? $ java ¨Clistmods ? List all modules in the JDK ? Shows the version ? $ jmod describe $JAVA_HOME/jmods/java.base.jmod ? Shows a very detailed description ? $ jmod list $JAVA_HOME/jmods/java.base.jmod ? A list of all classes in the jmod
  • 31. Services ? Services allow for loose coupling between service consumers modules and service providers modules ? Since Java SE 6, ServiceLoader API allows extending applications ? SL detects implementations of an interface and loads them ? This solution still works nicely with Java modules ? It is now sufficient the modules to be present on module-path ? Basically we define an interface/abstract class and we state that we depend on their implementations ? we cant run without an implementation ? Other modules implement that interface/abstract class ? All is defined in the module-info
  • 32. The module and the provider module bz.sty.pluggablelogger { exports bz.sty.pluggablelogger; exports bz.sty.pluggablelogger.spi; uses bz.sty.pluggablelogger.spi.PluggableLoggerProvider; } public abstract class PluggableLoggerProvider { protected PluggableLoggerProvider() { } public abstract PluggableLogger getPluggableLogger(); }
  • 33. PluggableLogger public abstract class PluggableLogger { public static PluggableLogger get() { ServiceLoader<PluggableLoggerProvider> sl = ServiceLoader.load(PluggableLoggerProvider.class); Iterator<PluggableLoggerProvider> iter = sl.iterator(); if (!iter.hasNext()) throw new RuntimeException("No service providers found!"); PluggableLoggerProvider provider = iter.next(); return provider.getPluggableLogger(); } protected PluggableLogger() { } public abstract void log(String message); }
  • 34. SuperLogger (implementing module) module bz.sty.superlogger { requires bz.sty.pluggablelogger; exports bz.sty.superlogger; provides bz.sty.pluggablelogger.spi.PluggableLoggerProvider with bz.sty.superlogger.SuperLoggerProvider; } public class SuperLoggerProvider extends PluggableLoggerProvider { public PluggableLogger getPluggableLogger() { return new SuperLogger(); } } public class SuperLogger extends PluggableLogger { public void log(String message) { System.out.println("SuperLogger: " + message); } }
  • 35. Running it all together $ javac -d mods ¨Cmodulesourcepath PluggableLogger:PluggableLoggerImpl:PluggableLoggerMain $(find Pluggable* -name *.java) $ jar --create --file=X.jar ¨CC mods/mdl . $ java -mp mlib/ -m bz.sty.pluggableloggerexample SuperLogger: Hello, World! $ java -Xdiag:resolver
  • 37. Create a custom JRE ? And now a drum roll for the coolest feature ? We hinted that it's now possible to create custom JREs ? The tool is called JLINK ? jlink takes the smallest set of needed jars and jmods and creates a new JRE in a dir. Very WOW
  • 38. jlink in action (example) $ jlink --modulepath $JAVA_HOME/jmods:mlib --addmods bz.sty.pluggablelogger, bz.sty.superlogger, bz.sty.pluggableloggerexample --output CustomVM $ CustomVM/bin/java -listmods $ CustomVM/bin/java -m bz.sty.pluggableloggerexample SuperLogger: Hello, World! $ du ¨Csh CustomVM/ 30M $ du -sh $JAVA_HOME 408M
  • 39. Stuff we didn't discuss, but it's important ? Jdeps ? A tool to check if you use internal APIs ? Unnamed modules ? All old jars ? Automatic modules ? Making old jars to modules ? Migrating an application gradually ? Not difficult at all, but only after IntelliJ/Eclipse and maven support ? The console is difficult ? Mixing --classpath and --modulepath ? It takes some getting used to

Editor's Notes

  • #4: SOFIA JUG ?! OPEN JUG.bg