Get to know the Java module system and learn how to migrate legacy code to Java 9, 10, 11

preview_player
Показать описание


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.

📚📚📚
This video references the book | The Java Module System
For 40% off use discount code: watchparlog40
📚📚📚

About the author:

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.
Рекомендации по теме
Комментарии
Автор

I think you might get a split package if you separate unit test code from production code because you don't want to ship it right?

twistedbydsign