Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java 9: Possible to have 2 modules with same name on module path

Is it possible to have 2 modules with the exact same name (but with slightly different contents) on the module path?

As far as I can tell, the Java 9 compiler does not complain about it. I have 2 modules declared as follows:

module com.dj.helper {
    exports com.dj.helper;
}

Both contain the com.dj.helper package but within the package the contents are different. Then in my main application, I am looking to import this module:

module com.dj {
    requires com.dj.helper;
}

Both modules with the same name are on my module path.

I was hoping that when compiling my com.dj module that the compiler would complain about the same module existing twice but it does not. Does this effectively mean you could have 2 versions of the same jar on your module path and Java will not know which one to use?

like image 932
DJ180 Avatar asked Oct 04 '17 20:10

DJ180


People also ask

Which of the following is correct about module system in Java 9?

Q 7 - Which of the following is correct about Module System in Java 9? A - javac, jlink, and java have additional options to specify module paths, which further locate definitions of modules.

Can a JAR contain multiple modules?

Each module-info. java which lives in the default package will be compiled to module-info. class . Therefore, one JAR cannot contain multiple modules.

Is module unnamed?

An unnamed module is a JAR that is built without module-info. java declaration. An unnamed module will require all other modules and will export all its packages as well. A named module is a module that is created with a module declaration file module-info.


2 Answers

No

It is not possible to have two modules of the same name in the same directory on the module path. The official documentation is not putting that information in a particularly prominent spot - it's the Javadoc of ModuleFinder::of that gives it away:

It is an error if a directory contains more than one module with the same name.

I've created a small demo project for the module system and it covers that case by creating two versions of the same module...

jar --create
    --file mods/monitor.observer.beta-1.0.jar
    --module-version 1.0
    -C classes/monitor.observer.beta .
jar --create
    --file mods/monitor.observer.beta-2.0.jar
    --module-version 2.0
    -C classes/monitor.observer.beta .

... and then referencing the folder in the next compilation ...

javac
    --module-path mods
    -d classes/monitor.statistics
    $(find monitor.statistics -name '*.java')

... which as expected leads to the following error message:

error: duplicate module on application module path
module in monitor.observer.beta
1 error

Note that I said in the same directory. Across directories multiple modules are possible.

Yes

The module system only enforces uniqueness within directories. Once again from ModuleFinder::of (emphasis mine):

The module finder locates modules by searching each directory, exploded module, or packaged module in array index order. It finds the first occurrence of a module with a given name and ignores other modules of that name that appear later in the sequence.

That makes it possible to have the same module in different directories.

like image 144
Nicolai Parlog Avatar answered Sep 22 '22 02:09

Nicolai Parlog


JEP 261 of the module system describes the module path as follows:

A module path is a sequence, each element of which is either a module definition or a directory containing module definitions. Each module definition is either

  • A module artifact, i.e., a modular JAR file or a JMOD file containing a compiled module definition, or else

  • An exploded-module directory whose name is, by convention, the module's name and whose content is an "exploded" directory tree corresponding to a package hierarchy.

It then describes the module resolution mechanism:

When searching a module path for a module of a particular name, the module system takes the first definition of a module of that name. Version strings, if present, are ignored; if an element of a module path contains definitions of multiple modules with the same name then resolution fails and the compiler, linker, or virtual machine will report an error and exit. It is the responsibility of build tools and container applications to configure module paths so as to avoid version conflicts; it is not a goal of the module system to address the version-selection problem.

As explained, it means that the compiler will complain only if two modules with the same name exist in the same directory.

like image 36
M A Avatar answered Sep 25 '22 02:09

M A