The Java Module System

This document was uploaded by one of our users. The uploader already confirmed that they had the permission to publish it. If you are author/publisher or own the copyright of this documents, please report to us by using this DMCA report form.

Simply click on the Download Book button.

Yes, Book downloads on Ebookily are 100% Free.

Sometimes the book is free on Amazon As well, so go ahead and hit "Search on Amazon"

Java's much-awaited "Project Jigsaw" is finally here! Java 11 includes a built-in modularity framework, and The Java Module System is your guide to discovering it. In this new book, you'll learn how the module system improves reliability and maintainability, and how it can be used to reduce tight coupling of system components. Foreword by Kevlin Henney. About the Technology Packaging code into neat, well-defined units makes it easier to deliver safe and reliable applications. The Java Platform Module System is a language standard for creating these units. With modules, you can closely control how JARs interact and easily identify any missing dependencies at startup. This shift in design is so fundamental that starting with Java 9, all core Java APIs are distributed as modules, and libraries, frameworks, and applications will benefit from doing the same. About the Book The Java Module System is your in-depth guide to creating and using Java modules. With detailed examples and easy-to-understand diagrams, you'll learn the anatomy of a modular Java application. Along the way, you'll master best practices for designing with modules, debugging your modular app, and deploying to production. What's inside • The anatomy of a modular Java app • Building modules from source to JAR • Migrating to modular Java • Decoupling dependencies and refining APIs • Handling reflection and versioning • Customizing runtime images • Updated for Java 11 About the Reader Perfect for developers with some Java experience. About the Author Nicolai Parlog is a developer, author, speaker, and trainer. His home is codefx.org.

Author(s): Nicolai Parlog
Edition: 1
Publisher: Manning Publications
Year: 2019

Language: English
Pages: 440
City: Shelter Island, NY
Tags: Debugging; Java; Application Development; Modules; Jigsaw

PART 1 - Hello, modules
1. First piece of the puzzle
2. Anatomy of a modular application
3. Defining modules and their properties
4. Building modules from source to JAR
5. Running and debugging modular applications


PART 2 - Adapting real-world projects
6. Compatibility challenges when moving to Java 9 or later
7. Recurring challenges when running on Java 9 or later
8. Incremental modularization of existing projects
9. Migration and modularization strategies


PART 3 - Advanced module system features
10. Using services to decouple modules
11. Refining dependencies and APIs
12. Reflection in a modular world
13. Module versions: What's possible and what's not
14. Customizing runtime images with jlink
15. Putting the pieces together