To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Java Platform Module System

From Wikipedia, the free encyclopedia

The Java Platform Module System[1] specifies a distribution format for collections of Java code and associated resources. It also specifies a repository for storing these collections, or modules, and identifies how they can be discovered, loaded and checked for integrity. It includes features such as namespaces with the aim of fixing some of the shortcomings in the existing JAR format, especially the JAR Hell, which can lead to issues such as classpath and class loading problems.

The Java Module System was initially being developed under the Java Community Process as JSR 277 and was scheduled to be released with Java 7.

JSR 277 later was put on hold and Project Jigsaw[2] was created to modularize the JDK. This JSR was superseded by JSR 376 (Java Platform Module System).

Project Jigsaw was originally intended for Java 7 (2011) but was deferred to Java 8 (2014) as part of Plan B,[3] and again deferred to a Java 9 release in 2017.[4] Java 9 including the Java Module System was released on September 21, 2017.[5]

YouTube Encyclopedic

  • 1/3
    Views:
    4 101
    757
    2 353
  • Java 9 || Session - 45 || || JPMS (Java Platform Module System ) Part - 1 by Durga sir
  • The Java Platform Module System (JPMS)
  • Java 9 || Session - 53 || || JPMS (Java Platform Module System ) Part - 9 by Durga sir

Transcription

Architecture

The Java Module System implemented in Java 9 includes the following JEPs and JSR (Java Specification Request):[2]

  • JEP 200: The Modular JDK: Define a modular structure for the JDK
  • JEP 201: Modular Source Code: Reorganize the JDK source code into modules, enhance the build system to compile modules, and enforce module boundaries at build time
  • JEP 220: Modular Run-Time Images: Restructure the JDK and JRE run-time images to accommodate modules and to improve performance, security, and maintainability
  • JEP 261: Module System: Implement the Java Platform Module System
  • JEP 282: The Java Linker: Create a tool that can assemble and optimize a set of modules and their dependencies into a custom run-time image[6]
  • JSR 376: Java Platform Module System[7]

Additionally, several other JDK 9 features have been added to ease transition to the module system:

  • JEP 238: Multi-Release JAR Files: Extend the JAR file format to allow multiple, Java-release-specific versions of class files to coexist in a single archive.[8]
  • JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization: Define public APIs for the JavaFX functionalities that is presently only available via internal APIs and would become inaccessible due to modularization.[9]
  • JEP 260: Encapsulate Most Internal APIs: Make most of the JDK's internal APIs inaccessible by default but leave a few critical, widely-used internal APIs accessible, until supported replacements exist for all or most of their functionality.[10]
  • JEP 275: Modular Java Application Packaging: The Java packager will evolve for JDK 9, making it aware of modules, allowing for example to package a module and all the modules it depends on.[11]

Properties of modules

Modules are a new way of grouping code. Contrary to Jar files, modules explicitly declare which modules they depend on, and what packages they export.[12] Explicit dependency declarations improve the integrity of the code, by making it easier to reason about large applications and the dependencies between software components.

The module declaration is placed in a file named module-info.java at the root of the module’s source-file hierarchy. The JDK will verify dependencies and interactions between modules both at compile-time and runtime.

For example, the following module declaration declares that the module com.foo.bar depends on another com.foo.baz module, and exports the following packages: com.foo.bar.alpha and com.foo.bar.beta:

module com.foo.bar {
    requires com.foo.baz;
    exports com.foo.bar.alpha;
    exports com.foo.bar.beta;
}

The public members of com.foo.bar.alpha and com.foo.bar.beta packages will be accessible by dependent modules. Private members are inaccessible even through a means such as reflection. Note that in Java versions 9 through 16, whether such 'illegal access' is de facto permitted depends on a command line setting.[13]

The JDK itself has been modularized in Java 9.[14]

Links with OSGi

The Java Module System does not intend to support all the functionalities that the OSGi platform currently supports (for example the Life-Cycle model and the Services Registry). However the Java Module System will support functions which are not supported by OSGi, such as modularity at compile-time, and built-in support for native libraries.[15] A couple of articles exploring how the Java Module System and OSGi could interoperate were published in 2016. These can be found on InfoQ[16] and also the OSGi Alliance Blog.[17]

See also

References

  1. ^ "Java Platform Module System (JSR 376)". Oracle Corporation. Retrieved 2018-07-02.
  2. ^ a b "Project Jigsaw". Oracle Corporation. Retrieved 2015-11-29.
  3. ^ Mark Reinhold (2009-09-20). "It's time for … Plan B". Oracle Corporation. Retrieved 2017-06-21.
  4. ^ "JDK 9". Oracle Corporation. Retrieved 2016-02-24.
  5. ^ "Java 9: Release date and new features". techworld.com. 2017-07-21. Retrieved 2017-11-18.
  6. ^ "jlink: The Java Linker (JSR 282)". Oracle Corporation. Retrieved 2016-03-12.
  7. ^ "Java Platform Module System (JSR 376)". Oracle Corporation. Retrieved 2015-11-29.
  8. ^ "JEP 238: Multi-Release JAR Files". Oracle Corporation. Retrieved 2017-07-31.
  9. ^ "JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization". Oracle Corporation. Retrieved 2017-07-31.
  10. ^ "JEP 260: Encapsulate Most Internal APIs". Oracle Corporation. Retrieved 2017-07-31.
  11. ^ "JEP 275: Modular Java Application Packaging". Oracle Corporation. Retrieved 2017-07-31.
  12. ^ Mark Reinhold (2016-03-08). "The State of the Module System". Oracle Corporation. Retrieved 2017-02-18.
  13. ^ "JEP 396: Strongly Encapsulate JDK Internals by Default". Retrieved 2021-02-06.
  14. ^ "JDK Module Summary". Oracle Corporation. 2016-06-24. Archived from the original on 2015-12-08. Retrieved 2017-02-18.
  15. ^ Mark Reinhold (2012-08-24). "Project Jigsaw: Late for the train: The Q&A". Oracle Corporation. Retrieved 2015-11-29.
  16. ^ "Java 9, OSGi and the Future of Modularity". InfoQ. Retrieved 2016-09-26.
  17. ^ "Java Module Layers and OSGi Bundles". OSGi Alliance. Retrieved 2016-08-01.

External links

This page was last edited on 25 June 2023, at 09:06
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.