You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>What is modularity in Java? To some, it’s a principle for development: programming to interfaces and hiding the details of implementations. This is the “school of encapsulation”. To others, it’s about leaning hard on class loaders to provide dynamic execution environments. This is the “school of isolation”. To still others, it’s about artifacts, repositories, and tooling. This is the “school of configuration”. Individually, these perspectives are valid, but they feel like pieces of a larger story that’s not quite clear. If a developer knows that some portion of their code is for internal use only, why can’t they hide a package as easily as hiding a class or a field? If code can only be compiled and run in the presence of its dependencies, why don’t those dependencies flow smoothly from compilation to packaging to installation to execution? If tools only work when presented with pristine self-describing artifacts, how can anyone reuse older libraries that are just plain JAR files?</p>
169
168
170
-
<p>Java 9 offers a coherent story for modularity by introducing modules as a first-class feature of the Java platform. A module is a set of packages designed for reuse. This simple concept has a surprisingly powerful impact on how code is developed, deployed, and run. The longstanding mechanisms for promoting and controlling reuse in Java – interfaces, access control, JAR files, class loaders, dynamic linking – all work better when packages are placed into modules.</p>
171
169
172
-
<p>First, modules clarify the structure of a program in a way that other mechanisms cannot. Many developers will be surprised that their code is not as well structured as they thought. For example, a codebase spread across multiple JAR files has a good chance of cycles between classes in different JAR files, but cycles between classes in different modules are forbidden. One of the motivations for investing in the modularization of a codebase is the knowledge that, once complete, there won’t be any backsliding into the ball of mud that cyclic dependencies allow. Developing with modules also leads to programming with services, which reduce coupling and increase abstraction even further.</p>
170
+
<p>The art of structuring large codebases is an undervalued one. This is neither a new
171
+
problem, nor is it specific to Java. However, Java is one of the mainstream languages
172
+
in which very large applications are built all the time—often making heavy use of
173
+
many libraries from the Java ecosystem. Under these circumstances, systems can outgrow
174
+
our capacity for understanding and efficient development. A lack of structure is
175
+
dearly paid for in the long run, experience shows.</p>
173
176
174
-
<p>Second, modules engender a sense of responsibility for code in a way that other mechanisms cannot. A developer who exports packages from a module is making a commitment to a stable API, and even the name of the module itself is part of the API. A developer who bundles too much functionality into a single module will cause that module to drag in a large number of dependencies which are irrelevant for any single task; anyone who reuses the module will realize its sprawling nature even if its internals are hidden. Developing with modules encourages every developer to think about the stability and cohesiveness of their code.</p>
<p>Modularisation is <b>hard</b>. Luckily I've been able to use Paul and Sander's book as my guide for writing my Java 9 tutorials, talks and converting jClarity's applications to use Java's new modular system. I'm buying a copy for all the engineering team at jClarity, it's that good!</p>
241
+
<p>Modularization is <b>hard</b>. Luckily I've been able to use Paul and Sander's book as my guide for writing my Java 9 tutorials, talks, and converting jClarity's applications to use Java's new modular system. I'm buying a copy for all the engineering team at jClarity, it's that good!</p>
0 commit comments