• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Core Java Volume II: Java Platform Module System

 
Greenhorn
Posts: 28
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Cay,

How much coverage does the new edition devote to the "Project Jigsaw" module system that was introduced in Java 9?

Bruce
 
Bruce Alspaugh
Greenhorn
Posts: 28
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I guess Cay did not see my question.

Bruce
 
author
Posts: 284
35
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, I thought I answered this. I probably forgot to click Submit.

Core Java Volume II has one chapter on modules. It contains what I think every developer should know about modules, and some more advanced material that some developers should know.

Every developer should know that modules encapsulate packages, and that the Java Platform Module System ensures that a module states on which other modules it depends. Every developer should also have a basic idea why Java 9 and above give nasty messages even when you don't use modules--reflective access, access to Java internals.

Some developers should know how to modularize an application and how to manage the migration to modules, particularly for libraries that someone else might want to use in a modular application.

A few select developers will also want to know the finer points of JPMS: transitive and static requirements, qualified exporting and opening, service loading.

All this is covered in the book. The book doesn't go into even more esoteric aspects such as module layers that are completely untested in the wild.

And finally, every developer should know that the Java Platform Module System is of great benefit to the Java platform but it is much less clear whether there is any benefit for your application. That too is covered.

Cheers,

Cay
 
Think of how dumb the average person is. Mathematically, half of them are EVEN DUMBER. Smart tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic