I am beginner in JPMS and can't understand its dynamism. For example, in current JVM instance moduleA.jar
is running. moduleA
requires only java.base
module. Now, I want
moduleB.jar
that needs java.sql
module and moduleC.jar
moduleB
moduleB
, java.sql
, moduleC
from JVM and release all resources.Can it be done in Java 9 module system?
This is an advanced topic. At a high-level, the module system is not dynamic in the sense that individual modules can not be unloaded or replaced in a running VM. However, you can use the API, specifically java.lang.module.Configuration
and java.lang.ModuleLayer
to create dynamic configurations of modules and instantiate them in a running VM as a layer of modules. In your scenario, then you may create a layer of modules with modules B and C. This layer of modules will be GC'ed/unloaded once there are no references to them.
As I said, this is an advanced topic and it's probably better to spend time mastering the basics, including services, before getting into dynamic configurations and module layers.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With