Is it possible (and if so, what is recommended) to call java code from Go , without having to run the JVM for every function call?
Ie, is there any equivalent to jpype's solution for python that allows you to run the JVM once and then import the Java classes and call them using the already running JVM?
source
share