This talk is for a very important new feature in Java SE 9. Code named Jigsaw, this feature modularizes the Java SE platform.
The coolest thing we do here is to create a custom JRE
Code: https://bitbucket.org/stybz/jigsaw.sty/
PPT: /mihailstoynov/modules-in-java-finally-openjdk-jigsaw
Video: https://www.youtube.com/watch?v=W5LeNPtPrqw
This document summarizes a presentation about using Gradle to build Scala and Play applications. It discusses Scala and Play support in Gradle, continuous compilation mode, and demos building a basic Play app and using hot reload in Gradle. The presenter is a LinkedIn software engineer who provides an overview of Scala, Play, Gradle, and the benefits of using Gradle for Play application builds.
Java 9 will introduce a new module system that will provide code encapsulation and a way to explicitly declare dependencies between modules. Some key changes include the ability to define modules using a module-info.java file, and new parameters for javac and java to support modules. There are still some unresolved issues around module declarations, artifacts, descriptors, graphs, reflection, and versioning that need to be addressed prior to final release. The new module system is aimed at addressing problems like large runtime footprints, classpath issues, and lack of visibility controls between packages.
With Java 9 modules coming to us soon, you want your existing code to be fully ready for the module system. Making code modular can be a daunting task, but Java 9 comes with a number features to ease migration. This includes automatic modules, the unnamed module and a number of command line arguments.
In this talk we will look at examples of migrating real code. It discusses common problems you?ll run into during migration, leading to practical tips and the ability to set realistic goals. It?s also a good way to understand the module system itself and the various migration paths it supports. This talk is an excellent preparation to start migrating your own code.
* Understanding modules and the module path
* Automatic modules
* Mixing classpath and modulepath
* Dealing with reflection
* Escape switches
* Jdeps
All topics will be based on examples of often used libraries and frameworks.
The new GraalVM from Oracle supports multiple language including JavaScript, Python, Ruby, R, C++ as well as Java and other JVM languages. This opens up interesting possibilities for polygot enterprise applications. Now you can use a Node library in a Java application or call an R statistical function from an EJB. Previously, this type of integration was extremely challenging. This session will provide recipes to get up and running along with best practices and some cool demos.
Code: https://github.com/rcuprak/graalvm_jee
Faster java ee builds with gradle [con4921]Ryan Cuprak
?
JavaOne 2016
It is time to move your Java EE builds over to Gradle! Gradle continues to gain momentum across the industry. In fact, Google is now pushing Gradle for Android development. Gradle draws on lessons learned from both Ant and Maven and is the next evolutionary step in Java build tools. This session covers the basics of switching existing Java EE projects (that use Maven) over to Gradle and the benefits you will reap, such as incremental compiling, custom distributions, and task parallelization. You¡¯ll see demos of all the goodies you¡¯ve come to expect, such as integration testing and leveraging of Docker. Switching is easier than you think, and no refactoring is required.
In September 2017 the long-awaited release of Java 9 gave us a new module system in Java. It also kick-started the release-train of frequent Java releases, with Java 11 being the first long-term supported Java version poised to take modules into the mainstream. So what has happened since the introduction of the module system?
This talk will provide an overview adoption of modules in open-source libraries, IDEs, build tools, and so on. It will also feature tools that have emerged to make working with modules easier. Expect an honest overview of the current state of modules in Java, with lots of demos to show what's possible. After this talk you can start developing your own modular Java application without hesitation!
Node.js Development with Apache NetBeansRyan Cuprak
?
This session covers the basics of developing Node.js applications with NetBeans. NetBeans includes fully integrated support for both JavaScript and Node.js. You¡¯ll get a tour of the features and learn how NetBeans can accelerate your projects. The presentation looks at basic code editing capabilities provided by the IDE, tool integration (npm/Grunt/Bower/Webpack), frameworks such as Express, and debugging capabilities. You¡¯ll see why NetBeans is the best free JavaScript/Node.js IDE.
Java(ee) mongo db applications in the cloud Shekhar Gulati
?
This document provides an agenda and summary for a workshop on developing MongoDB applications on OpenShift presented by Shekhar Gulati. The agenda includes getting started with OpenShift, developing a location-aware Java EE application using JAX-RS and CDI for REST services, and MongoDB for the database. The document discusses OpenShift, JAX-RS, CDI, and MongoDB concepts. It also outlines code samples and steps to create and deploy a sample Twitter-like application on OpenShift that supports creating, finding, and geo-searching statuses.
It seems like keeping up to date with Java nowadays is an enormous task. Gone is the era of big, delayed Java releases that span years. We're now getting a new major release every six months. What's up with that? You're probably still developing on Java 8, even though Java 12 is already available.
Join this session to get a code-first overview of what's new in Java since Java 8. We'll give an overview of the module system (Java 9), the local-variable type inference feature (Java 10), the new HttpClient API (Java 11) and a sneak peek of Switch Expressions in Java 12. Expect lots of advice on what to expect when migrating beyond Java 8. It's time to embrace the newfound agility of the Java platform!
Gradle is an open source build automation tool that uses Groovy for its build configuration files rather than XML like Maven. It offers features like incremental compilation, parallel task execution, and a built-in dependency management system. Projects can be configured as multi-module builds with hierarchical or flat layouts. Gradle supports plugins for tasks like compilation, testing, packaging, and publishing. It integrates with IDEs like IntelliJ, Eclipse, and NetBeans and can be used to build Java EE applications and other projects.
Developing modern java web applications with java ee 7 and angular jsShekhar Gulati
?
This document outlines an agenda for a workshop on developing modern Java web applications with Java EE 7 and AngularJS. The workshop will be presented by Shekhar Gulati and will take participants through steps to develop a conference application using these technologies, including creating the Java EE 7 project, developing REST and asynchronous resources, integrating a Twitter streaming client, building the AngularJS UI, and deploying the application to OpenShift.
- OpenJDK was originally developed by Sun Microsystems and later Oracle as an open-source implementation of Java. It became the reference implementation of Java 7 but Oracle only released official binaries once.
- Azul Systems develops and supports Zulu, a commercialized version of OpenJDK, to provide long-term support for Java SE 6, 7, and 8 as an alternative to Oracle's commercial support.
- Zulu is based on the open-source OpenJDK project but includes additional testing, packaging, and support. Azul contributes changes back to OpenJDK and provides Zulu freely as well as through commercial support contracts.
An introduction to the Java Platform Module System (JPMS). This talk is from April 2017, before the Java SE 9 release, so the final details may be subtly different, particularly once a standard becomes established for module names.
Java 9 ships in July, are you ready for Java 9 modules? Java 9 modules (aka Project Jigsaw) is the biggest fundamental change to the Java runtime. Code that use Oracle/Sun private APIs will break. This session will cover the basics of Java 9 modules and also the current state of tooling. The ramifications to existing and legacy applications will be covered along with the steps you¡¯ll need to take to harness the power of modules and write more maintainable systems.
JavaOne 2017 presentation about migration existing code to Java 9 modules.
Demos used during the presentation can be found on GitHub: https://github.com/java9-modularity/java9-migration-demos
CDI portable extensions are one of greatest features of Java EE allowing the platform to be extended in a clean and portable way. But allowing extension is just part of the story. CDI opens the door to a whole new eco-system for Java EE, but it¡¯s not the role of the specification to create these extensions.
Apache DeltaSpike is the project that leads this brand new eco-system by providing useful extension modules for CDI applications as well as tools to ease the creation of new ones.
In this session, we¡¯ll start by presenting the DeltaSpike toolbox and show how it helps you to develop for CDI. Then we¡¯ll describe the major extensions included in DeltaSpike, including 'configuration', 'scheduling' and 'data'.
The document discusses various aspects of developing modular applications using J2EE, OSGi, and RCP frameworks. It covers:
1. The structure and organization of modules, projects, and dependencies when using different frameworks like J2EE, Spring, Maven, and OSGi.
2. How modules, plugins, and bundles can be developed and packaged for each framework. This includes module/plugin sources, views, packaging, and dependencies.
3. Integration aspects like how to integrate databases, connection pools, templating engines, and more through extension bundles/plugins across frameworks.
With modularity coming to the core Java platform in Java 9, are all our modularity needs fulfilled, or does it still make sense to use something like OSGi? In this talk you will learn how Jigsaw helps modularity, and in what cases it might fall short.
Java 9 will provide a module-system, called Jigsaw. Besides modularising the JDK itself, Java developers can build more modular applications with Jigsaw. Modularity and Java go back way longer, though. OSGi, the de facto standard for modularity in Java has been around since 2000. Adoption is increasing in recent years.
A modular architecture has many advantages, such as increased decoupling resulting in more flexibility. In that sense, native support for Java modularity is very welcome. The big question now is: does Java 9 provide everything you need to build truly modular applications? Since Java 9 needs to maintain backwards compatibility, some compromises need to be made while enforcing module boundaries.
This talk discusses what you really need to build modular applications. We'll investigate which requirements are met (or not) by both module systems. You'll see that both Jigsaw and OSGi provided pieces of the modularity puzzle. Also, you'll learn whether having an additional modular runtime such as OSGi on top of Java 9 still makes sense.
Web application development using Play Framework (with Java)Saeed Zarinfam
?
This document provides an overview of the Play Framework for web application development using Java. It discusses the history and architecture of Play, how to set up a Play project, the MVC structure, routing, controllers, views, sessions, assets, hot code reloading, databases, testing, deployment, and scaling. Play uses Netty as its web server, is stateless, supports hot code reloading, and allows building asynchronous and reactive applications. It also has integrations for Akka, WebSockets, caching, internationalization, and more.
Java 9 brings modules as a core concept to the platform, but it¡¯s more than just a language feature. With modules in Java 9, we can improve the design of code to increase maintainability and extensibility. As with every design principle, modularity requires thought and trade-offs to really reap the benefits. This session covers design practices for making codebases more maintainable and extensible. You will also find out about trade-offs to help you make the best choices. Topics include hiding implementations, using services for extensibility, API modules, avoiding cycles, optional dependencies, and dynamically loading modules. Familiarity with modules is helpful but not required. The speakers are the authors of Java 9 Modularity (O¡¯Reilly).
Also see https://javamodularity.com
The document discusses developing plug-ins for NetBeans. It describes what a plug-in is, including that it is a JAR file with special manifest entries. It also discusses that plug-ins can expose APIs, depend on other module APIs, and everything is localized. Finally, it provides an overview of the key NetBeans APIs involved in plug-in development, including files/filesystems, data objects, nodes, and lookup patterns.
This document discusses tools used by Outbrain to bridge the gap between their MySQL engineering, operations, and database administration teams using a DevOps approach. It describes tools like Anemometer and Anemomaster that provide visibility into slow queries and database activity. It also discusses how automation with Chef and orchestration with Onering help Outbrain deploy and manage their large MySQL infrastructure.
Enabling White-Box Reuse in a Pure Composition Languageelliando dias
?
This document discusses enabling white-box reuse in a pure composition language. It introduces a language extension to JPiccola, a composition language, that allows inheritance by generating subclasses at runtime. This enables accessing functionality from existing Java frameworks through inheritance while maintaining JPiccola's scripting style. The implementation generates bytecode for the subclasses by gathering class structure information and redirecting method calls to Piccola services. Examples show generating subclasses and interfaces. The extension integrates well with JPiccola and allows frameworks to be reused through inheritance when needed.
The curious Life of JavaScript - Talk at SI-SE 2015jbandi
?
My talk about the life of JavaScript, from birth to today.
I went trough the demos and code examples very quickly, rather as a teaser to show how modern JavaScript development might look.
If you are interested in a deep dive into the topic of modern JavaScript development, HTML5, ES6, AngularJS, React, Gulp, Grunt etc, please consider my courses: http://www.ivorycode.com/#schulung
Choosing the Right Framework for Running Docker Containers in ProdJosh Padnick
?
In this talk, I cover the key elements of running multiple Docker containers per VM, the major frameworks available to assist with this, and when to choose each.
Graeme Rocher presented on upcoming versions of Grails. Grails 2.4 will include upgrades to Spring 4.0, Java 8 support, and the Asset Pipeline plugin. Grails 3.0 plans to embrace Gradle builds, abstract packaging, support non-servlet containers, and extend Grails' reach through profiles like Netty, batch, and Hadoop. It will also build on Spring Boot to enable embedded servers, runnable jars, and scripting/microservices. Key goals are reducing dependencies and bloat.
What we can expect from Java 9 by Ivan KrylovJ On The Beach
?
Java 9 is currently scheduled to become generally available in less then 1 year. Perhaps now is a good time to have a closer look at language proposals and API changes in Java 9. There are over 70 proposals targeted to Java 9, we will have a looks at some key ones, starting with java modularity. We will look at some breaking changes and ways to develop both short and long term solutions for adoption of new upcoming version of Java.
Java 9 introduced several new features including JShell, modules, and services. JShell allows developers to test Java code interactively from the command line. Modules allow Java code to be modularized by defining explicit dependencies and encapsulating packages. Services allow modules to discover implementations of an interface at runtime through a service loader. The modularization of Java aims to improve maintainability, security, and performance of Java applications.
It seems like keeping up to date with Java nowadays is an enormous task. Gone is the era of big, delayed Java releases that span years. We're now getting a new major release every six months. What's up with that? You're probably still developing on Java 8, even though Java 12 is already available.
Join this session to get a code-first overview of what's new in Java since Java 8. We'll give an overview of the module system (Java 9), the local-variable type inference feature (Java 10), the new HttpClient API (Java 11) and a sneak peek of Switch Expressions in Java 12. Expect lots of advice on what to expect when migrating beyond Java 8. It's time to embrace the newfound agility of the Java platform!
Gradle is an open source build automation tool that uses Groovy for its build configuration files rather than XML like Maven. It offers features like incremental compilation, parallel task execution, and a built-in dependency management system. Projects can be configured as multi-module builds with hierarchical or flat layouts. Gradle supports plugins for tasks like compilation, testing, packaging, and publishing. It integrates with IDEs like IntelliJ, Eclipse, and NetBeans and can be used to build Java EE applications and other projects.
Developing modern java web applications with java ee 7 and angular jsShekhar Gulati
?
This document outlines an agenda for a workshop on developing modern Java web applications with Java EE 7 and AngularJS. The workshop will be presented by Shekhar Gulati and will take participants through steps to develop a conference application using these technologies, including creating the Java EE 7 project, developing REST and asynchronous resources, integrating a Twitter streaming client, building the AngularJS UI, and deploying the application to OpenShift.
- OpenJDK was originally developed by Sun Microsystems and later Oracle as an open-source implementation of Java. It became the reference implementation of Java 7 but Oracle only released official binaries once.
- Azul Systems develops and supports Zulu, a commercialized version of OpenJDK, to provide long-term support for Java SE 6, 7, and 8 as an alternative to Oracle's commercial support.
- Zulu is based on the open-source OpenJDK project but includes additional testing, packaging, and support. Azul contributes changes back to OpenJDK and provides Zulu freely as well as through commercial support contracts.
An introduction to the Java Platform Module System (JPMS). This talk is from April 2017, before the Java SE 9 release, so the final details may be subtly different, particularly once a standard becomes established for module names.
Java 9 ships in July, are you ready for Java 9 modules? Java 9 modules (aka Project Jigsaw) is the biggest fundamental change to the Java runtime. Code that use Oracle/Sun private APIs will break. This session will cover the basics of Java 9 modules and also the current state of tooling. The ramifications to existing and legacy applications will be covered along with the steps you¡¯ll need to take to harness the power of modules and write more maintainable systems.
JavaOne 2017 presentation about migration existing code to Java 9 modules.
Demos used during the presentation can be found on GitHub: https://github.com/java9-modularity/java9-migration-demos
CDI portable extensions are one of greatest features of Java EE allowing the platform to be extended in a clean and portable way. But allowing extension is just part of the story. CDI opens the door to a whole new eco-system for Java EE, but it¡¯s not the role of the specification to create these extensions.
Apache DeltaSpike is the project that leads this brand new eco-system by providing useful extension modules for CDI applications as well as tools to ease the creation of new ones.
In this session, we¡¯ll start by presenting the DeltaSpike toolbox and show how it helps you to develop for CDI. Then we¡¯ll describe the major extensions included in DeltaSpike, including 'configuration', 'scheduling' and 'data'.
The document discusses various aspects of developing modular applications using J2EE, OSGi, and RCP frameworks. It covers:
1. The structure and organization of modules, projects, and dependencies when using different frameworks like J2EE, Spring, Maven, and OSGi.
2. How modules, plugins, and bundles can be developed and packaged for each framework. This includes module/plugin sources, views, packaging, and dependencies.
3. Integration aspects like how to integrate databases, connection pools, templating engines, and more through extension bundles/plugins across frameworks.
With modularity coming to the core Java platform in Java 9, are all our modularity needs fulfilled, or does it still make sense to use something like OSGi? In this talk you will learn how Jigsaw helps modularity, and in what cases it might fall short.
Java 9 will provide a module-system, called Jigsaw. Besides modularising the JDK itself, Java developers can build more modular applications with Jigsaw. Modularity and Java go back way longer, though. OSGi, the de facto standard for modularity in Java has been around since 2000. Adoption is increasing in recent years.
A modular architecture has many advantages, such as increased decoupling resulting in more flexibility. In that sense, native support for Java modularity is very welcome. The big question now is: does Java 9 provide everything you need to build truly modular applications? Since Java 9 needs to maintain backwards compatibility, some compromises need to be made while enforcing module boundaries.
This talk discusses what you really need to build modular applications. We'll investigate which requirements are met (or not) by both module systems. You'll see that both Jigsaw and OSGi provided pieces of the modularity puzzle. Also, you'll learn whether having an additional modular runtime such as OSGi on top of Java 9 still makes sense.
Web application development using Play Framework (with Java)Saeed Zarinfam
?
This document provides an overview of the Play Framework for web application development using Java. It discusses the history and architecture of Play, how to set up a Play project, the MVC structure, routing, controllers, views, sessions, assets, hot code reloading, databases, testing, deployment, and scaling. Play uses Netty as its web server, is stateless, supports hot code reloading, and allows building asynchronous and reactive applications. It also has integrations for Akka, WebSockets, caching, internationalization, and more.
Java 9 brings modules as a core concept to the platform, but it¡¯s more than just a language feature. With modules in Java 9, we can improve the design of code to increase maintainability and extensibility. As with every design principle, modularity requires thought and trade-offs to really reap the benefits. This session covers design practices for making codebases more maintainable and extensible. You will also find out about trade-offs to help you make the best choices. Topics include hiding implementations, using services for extensibility, API modules, avoiding cycles, optional dependencies, and dynamically loading modules. Familiarity with modules is helpful but not required. The speakers are the authors of Java 9 Modularity (O¡¯Reilly).
Also see https://javamodularity.com
The document discusses developing plug-ins for NetBeans. It describes what a plug-in is, including that it is a JAR file with special manifest entries. It also discusses that plug-ins can expose APIs, depend on other module APIs, and everything is localized. Finally, it provides an overview of the key NetBeans APIs involved in plug-in development, including files/filesystems, data objects, nodes, and lookup patterns.
This document discusses tools used by Outbrain to bridge the gap between their MySQL engineering, operations, and database administration teams using a DevOps approach. It describes tools like Anemometer and Anemomaster that provide visibility into slow queries and database activity. It also discusses how automation with Chef and orchestration with Onering help Outbrain deploy and manage their large MySQL infrastructure.
Enabling White-Box Reuse in a Pure Composition Languageelliando dias
?
This document discusses enabling white-box reuse in a pure composition language. It introduces a language extension to JPiccola, a composition language, that allows inheritance by generating subclasses at runtime. This enables accessing functionality from existing Java frameworks through inheritance while maintaining JPiccola's scripting style. The implementation generates bytecode for the subclasses by gathering class structure information and redirecting method calls to Piccola services. Examples show generating subclasses and interfaces. The extension integrates well with JPiccola and allows frameworks to be reused through inheritance when needed.
The curious Life of JavaScript - Talk at SI-SE 2015jbandi
?
My talk about the life of JavaScript, from birth to today.
I went trough the demos and code examples very quickly, rather as a teaser to show how modern JavaScript development might look.
If you are interested in a deep dive into the topic of modern JavaScript development, HTML5, ES6, AngularJS, React, Gulp, Grunt etc, please consider my courses: http://www.ivorycode.com/#schulung
Choosing the Right Framework for Running Docker Containers in ProdJosh Padnick
?
In this talk, I cover the key elements of running multiple Docker containers per VM, the major frameworks available to assist with this, and when to choose each.
Graeme Rocher presented on upcoming versions of Grails. Grails 2.4 will include upgrades to Spring 4.0, Java 8 support, and the Asset Pipeline plugin. Grails 3.0 plans to embrace Gradle builds, abstract packaging, support non-servlet containers, and extend Grails' reach through profiles like Netty, batch, and Hadoop. It will also build on Spring Boot to enable embedded servers, runnable jars, and scripting/microservices. Key goals are reducing dependencies and bloat.
What we can expect from Java 9 by Ivan KrylovJ On The Beach
?
Java 9 is currently scheduled to become generally available in less then 1 year. Perhaps now is a good time to have a closer look at language proposals and API changes in Java 9. There are over 70 proposals targeted to Java 9, we will have a looks at some key ones, starting with java modularity. We will look at some breaking changes and ways to develop both short and long term solutions for adoption of new upcoming version of Java.
Java 9 introduced several new features including JShell, modules, and services. JShell allows developers to test Java code interactively from the command line. Modules allow Java code to be modularized by defining explicit dependencies and encapsulating packages. Services allow modules to discover implementations of an interface at runtime through a service loader. The modularization of Java aims to improve maintainability, security, and performance of Java applications.
This document provides an overview and agenda for a session on the "Well-Grounded Java Developer". The session will cover introductions to Java 7 features like Project Coin, NIO.2, and Method Handles. It will also cover polyglot and functional programming and modern Java concurrency practices like Fork/Join. The session aims to help developers code more rapidly, concisely, and take advantage of compiler, JVM, and GC improvements in Java 7.
This document provides an agenda and information for a Java 9/Jigsaw hack day event hosted by the Atlanta Java Users Group. The agenda includes sessions on Java 9 modularization, JLink, migrating non-modular apps to Java 9, and feedback. Presenters will discuss what modularization means in Java 9, including splitting the JDK into named modules that declare dependencies. Attendees will have hands-on exercises and are encouraged to provide live feedback.
This is the material for Tampere workshop on 14th May 2018.
How to combine modern technologies such as Java 10, Spring Boot 2, Docker, to create more lightweight and modern microservices - or any services you like.
Modularisation in Java 9 splits the Java language and JDK/JRE into modules. This includes modularising the OpenJDK source code and runtime images to improve structure, reduce dependencies, and allow for smaller custom runtimes using jlink. The Java Platform Module System (JSR 376) introduced modules that define dependencies and exported/opened packages, allowing Java code and the JDK to be modularized. Hands-on sessions demonstrated creating modules, using jlink to build custom runtimes, and migrating non-modular code to Java 9.
The Diabolical Developer's Guide to Surviving Java 9jClarity
?
The Diabolical Developer presents a pragmatic guide on running and compiling your application on Java 9. There are a lot of new resrtictions due to the Java 9 modular runtime, so make sure you read through carefully before your migration!
Vignesh Ramesh gives an overview of Java modules in Java 9. Modules allow for strong encapsulation by only exporting certain packages. This addresses issues in Java 8 where all packages were effectively public. The module system solves problems like weak encapsulation and jar hell. Key aspects include module descriptors, exports, requires, and the new jlink tool for creating custom runtime images.
Modularity of The Java Platform Javaday (http://javaday.org.ua/)Martin Toshev
?
Project Jigsaw aims to provide modularity for the Java platform by defining modules for the JDK and restructuring it. This will address problems caused by the current monolithic design and dependency mechanism. OSGi also provides modularity on top of Java by defining bundles and a runtime. Project Penrose explores interoperability between Jigsaw and OSGi modules.
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)Martin Toshev
?
Seminar "Modularity of the Java Platform" of the Bulgarian Java User Group.
Topics of the seminar:
Modularity 101
Modularity on top of the platform: OSGi
Modularity of the platform: Jigsaw
OSGi and Jigsaw interoperability: Penrose
This document discusses module patterns in JavaScript and asynchronous module definition (AMD) using RequireJS. It introduces the module pattern as a way to encapsulate code and expose public APIs. AMD and RequireJS are presented as solutions for asynchronously loading JavaScript modules and managing dependencies. Key advantages of the module pattern, AMD and RequireJS include maintaining encapsulation, organizing code into reusable modules, and handling dependency loading order. Challenges with large JavaScript applications using many modules are also addressed.
Jigsaw is a project that started 8 years ago to address issues with Java's module system. It aims to avoid classpath hell, improve encapsulation across packages, remove manual security, and enable faster startup. The Java Platform Module System (JPMS) specified in JSR 376 addresses these goals. Key changes in Java 9 include modularizing the JDK itself into modules like java.base and representing dependencies between modules. The module system enforces encapsulation through access controls and provides reflection capabilities. While disruptive, the new modular structure in Java 9 provides benefits over the current and OSGi systems and developers are encouraged to start adopting modules now ahead of the Java 9 release.
Java 7 Modularity: a View from the Gallerynjbartlett
?
The document discusses Java modularity and Project Jigsaw. It summarizes that Project Jigsaw aims to modularize the Java Development Kit (JDK) to address issues like its large size, slow startup times, and difficulties evolving APIs and managing dependencies. It also discusses the potential for module systems like Jigsaw and OSGi to fragment the Java ecosystem if they are not compatible.
Patrick Chanezon and Guillaume Laforge are presenting Google App Engine Java and Gaelyk, the lightweight groovy toolkit on top of the GAE SDK, at the Devoxx conference
The document outlines the course details for a Mobile App Development class. It includes:
- The course instructor's contact information.
- Recommended reference books and websites for learning Java.
- The marking criteria for assignments, projects, exams.
- General classroom rules around cell phones, food, and behavior.
- An outline of lecture topics that will cover what Java is, its history and features.
This document discusses modularity in Java applications and platforms. It covers OSGi, a popular modular system for Java that allows bundles to be installed and updated dynamically. It also discusses Project Jigsaw, which aims to add built-in modularity to the Java platform starting in JDK 9 by defining Java modules. Project Penrose explores interoperability between OSGi and Jigsaw modular systems.
Here are the key differences:
Reserved words: These are words that have special meaning in Java like class, public, etc. They cannot be used as regular identifiers.
Modifiers: Modifiers like public, private, static etc. specify attributes of classes, methods and variables.
Package: A package is a namespace that organizes related classes and interfaces. It provides access protection.
Libraries: Libraries are pre-compiled classes that provide useful functionality that can be included in programs using import statements.
JVM version: The Java Virtual Machine version specifies the Java runtime environment. Programs need to be compatible with the JVM version.
JVM: The Java Virtual Machine is an abstract computing machine that
Production Planning & Control and Inventory Management.pptxVirajPasare
?
Production Planning and Control : Importance, Objectives and Functions . Inventory Management - Meaning, Types , Objectives, Selective Inventory Control : ABC Analysis
See the world through a spatial lens with the Caddlance GIS Portfolio. We excel at creating compelling maps and visualizations that effectively communicate complex spatial information for better project understanding and stakeholder engagement.
Urban Design and Planning Portfolio .pdfsonam254547
?
Get insights into the urban planning and design process at Caddlance. Our portfolio highlights our expertise in analysis, strategy development, and design implementation, leading to successful and impactful urban projects.
Call for Papers - 6th International Conference on Big Data and Machine Learni...IJDKP
?
6th International Conference on Big Data and Machine Learning (BDML 2025) will act as a major forum for the presentation of innovative ideas, approaches, developments, and research projects in the areas of Big Data and Machine Learning. It will also serve to facilitate the exchange of information between researchers and industry professionals to discuss the latest issues and advancement in the area of Big Data and Machine Learning.
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
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
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
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
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
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