I'm porting our native windows app launcher from Java 8 to Java 11. We used to call JNI_CreateJavaVM
method to instantiate a JVM instance, find main class and call its main
method. With a modular app, env->FindClass
doesn't return our app class. I tried calling Class.forName
and it doesn't return a class instance as well.
Also, JNI_CreateJavaVM
complaints about --add-modules
argument.
How should we specify modules to load for the JNI api?
What can I do to find the app class from the native part?