|
| 1 | +package com.habr.j17.manual.fewmodules.separately.withdeps.loading; |
| 2 | + |
| 3 | +import java.lang.module.Configuration; |
| 4 | +import java.lang.module.ModuleFinder; |
| 5 | +import java.lang.reflect.Method; |
| 6 | +import java.nio.file.Path; |
| 7 | +import java.nio.file.Paths; |
| 8 | +import java.util.Set; |
| 9 | + |
| 10 | +public class Main { |
| 11 | + public static void main(String[] args) { |
| 12 | + try { |
| 13 | + Path loadableModulePath = Paths.get("../../../loadable/build/libs/loadable-1.0.jar"); |
| 14 | + String loadableModuleName = "manual.fewmodules.separately.withdeps.loadable"; |
| 15 | + Path dependencyModulePath = Paths.get("../../../dependency/build/libs/dependency-1.0.jar"); |
| 16 | + String dependencyModuleName = "manual.fewmodules.separately.withdeps.dependency"; |
| 17 | + |
| 18 | + String mainClassName = "com.habr.j17.manual.fewmodules.separately.withdeps.loadable.Main"; |
| 19 | + |
| 20 | + ModuleLayer layer = createLayer( |
| 21 | + loadableModulePath, loadableModuleName, |
| 22 | + dependencyModulePath, dependencyModuleName |
| 23 | + ); |
| 24 | + ClassLoader loadableCL = layer.findLoader(loadableModuleName); |
| 25 | + Class<?> mainClass = loadableCL.loadClass(mainClassName); |
| 26 | + |
| 27 | + System.out.println("[loading] Main Class Module is " + Main.class.getModule()); |
| 28 | + System.out.println("[loading] Main Class ClassLoader is " + Main.class.getClassLoader()); |
| 29 | + System.out.println("ClassLoader for [loadable] module is " + loadableCL); |
| 30 | + |
| 31 | + Method mainMethod = mainClass.getMethod("main", String[].class); |
| 32 | + mainMethod.invoke(null, (Object) args); |
| 33 | + } catch (Exception e) { |
| 34 | + throw new RuntimeException(e); |
| 35 | + } |
| 36 | + } |
| 37 | + |
| 38 | + private static ModuleLayer createLayer(Path mp1, String mn1, Path mp2, String mn2) { |
| 39 | + ModuleFinder finder = ModuleFinder.of(mp1, mp2); |
| 40 | + |
| 41 | + ModuleLayer bootLayer = ModuleLayer.boot(); |
| 42 | + Configuration parentConfig = bootLayer.configuration(); |
| 43 | + Configuration config = parentConfig.resolve(finder, ModuleFinder.of(), Set.of(mn1, mn2)); |
| 44 | + return bootLayer.defineModulesWithOneLoader(config, new CustomClassLoader()); |
| 45 | + } |
| 46 | +} |
0 commit comments