Chaper 12 - Modules Flashcards
What does the Java Platform Module System (JPMS) do?
- Groups code at a higher level than packages
- Developers can declare what packages are available outside the module
What is the special file called needed for using modules?
module-info.java
This file contains the module declaration
What are the 6 benefits of using modules?
- Better access control
You can specifically allow a package to be accessed by a certain package. - Clearer dependency management
- Custom Java Builds
You can create a java runtime that only needs a small part of JDK, so you won’t need to load the full 150MB JDK. - Improved security
- Improved performance
Because the program starts op in smaller java packages (/modules) it improves startup time and has a lower memory requirement. - Unique package enforcement
Modules specify exposed packages, so Java can ensure that each package comes from only one module and avoid confusion about what needs to run
What naming conventions do modules follow?
The naming conventions from a package. so a Module name should be: food.eat.module
and NOT EatModule
What is the command line format when to run to compile your module?
javac –module-path <module-path> -d <directory> <module-path>/module-info.java</module-path></directory></module-path>
What is the command line syntax to access Directory for class files?
-d{dir}
What is the command line syntax to access the module path?
-p <module_path> // --module-path <module_path></module_path></module_path>
What is the command line format when you want to run a module?
java – module-path <module_path> ---module <module_name>/<package_name>.<class_name></class_name></package_name></module_name></module_path>
What is the command line syntax to access the module name?
-m <module_name> Or --module <module_name></module_name></module_name>
What is the command line syntax to access the module path?
-p <path> OR --module-path <module_path></module_path></path>
Which modules are present on the module path?
only named and automatic modules
is this a legal module name:
com.amazing.movierental
Yes, it is. small letters only
is this a legal module name:
com.amazing.$movierental
Yes it is, allow to start a module and package with ‘$’
is this a legal module name:
com.amazing.1movierental
No, you can’t start a module, or package-, name with a number
is this a legal module name:
com.amazing.movie-rental
No, you are not allowed to use a ‘-‘
is this a legal module name:
com.amazing.movie_rental
yes, you are allowed to use an underscore
True or false. The module system has 3 phases:
- compile-time
- link-time
- runtime
True;
“link time”, is an optional phase between the two in which a set of modules can be assembled and optimized into a custom run-time image. The benefit of this phase is that the size of the resultingapplication is reduced because only those classes that are actually used are included in the application artifacts.
Which statement would you need to have in the module-info of a Java Swing based desktop application?
requires java.desktop;
What does “exports <package_name>" do in the module-info.java file?</package_name>
It makes a package available outside it’s own module.
If we don’t add the exports statement it is only possible to run that package from the command line within it’s own package.
What does “requires <package_name>" do in the module-info.java file?</package_name>
It makes clear that <package_name> (from an other module) is needed to run this module.</package_name>
How can you export a package only to specific package?
“exports <package_name> to <module_name>;"</module_name></package_name>
Is a PRIVATE method available within the module and/or outside the module?
in the module: available but only in the class
outside the module: no access
Is a PACKAGE-PRIVATE method available within the module and/or outside the module?
in the module: Available in the package
outside the module: no access
Is a PROTECTED method available within the module and/or outside the module?
in the module: only available within package or to subclasses
outside the module: available to subclasses IF package is exported
Is a PUBLIC method available within the module and/or outside the module?
in the module: available for all classes
outside the module: available IF package is exported
What does “requires transitive <package_name>" do in the module-info.java file?</package_name>
it makes sure it able to import al needed packages also if it’s via-via.
e.g.
See image page 677
is it possible to state the following in your module-info.java file?
requires zoo.animal.talks;
requires transitive zoo.animal.talks;
No, it won’t compile because you require two times the same thing
With what technique does java allow you to open a package at runtime?
reflection
What is reflection?
Reflection is a feature in the Java programming language. It allows an executing Java program to examine or “introspect” upon itself, and manipulate internal properties of the program. For example, it’s possible for a Java class to obtain the names of all its members and display them
What is the syntax to open an entire module?
open module <module.name> {
}</module.name>
- whole module = open -> specific package = opens
What syntax do you use to open an specific package in the module-info.java file?
module <module.name> {
opens <package.name.name>
}</package.name.name></module.name>
- whole module = open -> specific package = opens
What class helps you to find any classes that implement a service provider interface?
the ServiceLoader class. It looks likes this:
ServiceLoader<object> loader = ServiceLoader.load<Object.class>; Eventually you can itterate over this list to see what classes implement a serviceprovider interface.</Object.class></object>
What is the Service provider interface?
An interface or abstract class that acts as a proxy or an endpoint to the service.
If the service is one interface, then it is the same as a service provider interface.
Service and SPI together are well-known in the Java Ecosystem as API.
What does the Service provider do?
A specific implementation of the SPI. The Service Provider contains one or more concrete classes that implement or extend the service type.
What does the Service Locator do?
It loads the implementations of the service. At the heart of the Service Provider Interface is the ServiceLoader class. This has the role of discovering and loading implementations lazily. It uses the context classpath to locate provider implementations and put them in an internal cache.
What does the Consumer do?
The module that uses the service?
In what build-in module is Swing located?
java.desktop
In what build-in module is Logging located?
java.logging
what is the prefix of java api build-in modules?
java.
what is the prefix of jdk build-in modules?
jdk.
What is the command line to describe a module?
java -p <module_path> --describe-module <module_name>
or
java -p<module_path> -d <module_name></module_name></module_path></module_name></module_path>
what is the command line to get a list of all available modules?
java –list-modules
What is command line to get all available modules in specific folder
java <module_path> --list-modules</module_path>
What kind of insights does the jdeps command gives you?
It gives information about dependencies within a module. It really takes a look at the code in the module. This is different from describing a module
What are named modules?
- modules that contain a module-info.java file
- where the name is in this module file.
- This modules appear in the module path
What are automatic modules?
- appears in the module path
- but does NOT contain a module-info.java file
- but get’s treated like a module
- the module name is automatically generated
this automatically exports all packages? (p 701)
How does the name of an automatic module get determined?
based on the MANIFEST.MF file. This file is in every jar file.
this manifest file contains info about the jar like the Java version, and the manifest version. Like kev-value pairs
What are unnamed modules?
- Appear on the class path – and NOT the module path
- ## it does not contain an module.info.java file
True or False – code on the class path can access the module path
true
True or False –code on the module path can access the class path?
false
True or false – modules with circular dependencies will compile and work fine.
False, modules with circular dependencies won’t compile
With automatic modules. How does the jar file name converted to the module fie name?
- dashes will be converted to dots
- file extensions will be ignored
What happens when the jar’s manifest contains the automatic-module-name (for converting the name automatically?
the name of the Jar file will be completely ignored.
True / False – Modules allows a sealed class and it’s direct subtypes to be members of different packages.
True, Normally, the direct subclasses of a seal class must reside in the same package as the package of the sealed class. However, if a sealed class belongs to a named module, it is allowed to list classes from different packages of the same module in its permits clause.
True / False – If a module wants to read another module but only temporarily, it can request such access using command line options.
true, a command like this could achieve that:
–add-reads moduleA=moduleB implies that moduleA wants to read all exported packages of moduleB.
What does the command line:
–jdk-internals do?
List usage of internal api’s
What are 3 thing the Java Module System achieves?
- It encapsulates the packages.
- It provides a reliable mechanism to let components of an application specify their dependencies on each other
- It provides a way to specify services and declare dependence on such services.
What is the classpath?
Classpath is an environment variable that tells the Java Virtual Machine (JVM) where to find classes and resources during runtime.