Java:Module:修订间差异
建立內容為「 Category:Program」的新頁面 |
无编辑摘要 |
||
第1行: | 第1行: | ||
Java Platform Module System (JPMS)是Java9中的最大的变动,在[https://jcp.org/en/jsr/detail?id=376|JSR 376: JavaTM Platform Module System]中引入。 | |||
首先,模块化的jar文件(Modular JAR)中需要一个<syntaxhighlight lang="java" inline>module-info.class</syntaxhighlight>文件,这个文件里面存储了模块的信息。倘若没有,那么认为这是一个<syntaxhighlight lang="java" inline>automatic module</syntaxhighlight>,也即用jar的文件名作为模块来导出。 | |||
[[Category: | 除此之外,jar文件中通过<span class="article-label">META-INF</span>目录存储安全、版本等其他信息 | ||
* MANIFEST.MF:定义package相关信息 | |||
* INDEX.LIST:This file is generated by the new "-i" option of the jar tool, which contains location information for packages defined in an application. It is part of the JarIndex implementation and used by class loaders to speed up their class loading process. | |||
* The signature file for the JAR file. 'x' stands for the base file name. | |||
* x.DSA:The signature block file associated with the signature file with the same base file name. This file stores the digital signature of the corresponding signature file. | |||
* services/:This directory stores all the service provider configuration files. | |||
[[Category:Java]] |
2021年5月19日 (三) 00:23的版本
Java Platform Module System (JPMS)是Java9中的最大的变动,在376: JavaTM Platform Module System中引入。
首先,模块化的jar文件(Modular JAR)中需要一个module-info.class
文件,这个文件里面存储了模块的信息。倘若没有,那么认为这是一个automatic module
,也即用jar的文件名作为模块来导出。
除此之外,jar文件中通过META-INF目录存储安全、版本等其他信息
- MANIFEST.MF:定义package相关信息
- INDEX.LIST:This file is generated by the new "-i" option of the jar tool, which contains location information for packages defined in an application. It is part of the JarIndex implementation and used by class loaders to speed up their class loading process.
- The signature file for the JAR file. 'x' stands for the base file name.
- x.DSA:The signature block file associated with the signature file with the same base file name. This file stores the digital signature of the corresponding signature file.
- services/:This directory stores all the service provider configuration files.