Lately I have been asked a lot how to run a Jolie program from inside of a Java program.
The opposite, running Java from Jolie, is well documented in our documentation site.

Running Java code from inside a Jolie program is also a very simple process.
First, you need to add to your classpath (import in your project, if you are using an IDE) the jolie.jar and libjolie.jar libraries that you can find in your Jolie installation directory (JOLIE_HOME).
Now, from Java, you can create an Interpreter object. Interpreter is the class that implements the Jolie language interpreter. It will need two parameters for the constructor. The first is the command line arguments that you want to pass to the interpreter. The second is the parent class loader to use for loading the resources that the interpreter will need. Here is an example based on the Linux launcher script (but it should work on any OS), where we assume that the Jolie program that we want to run is called main.ol:


String jh = System.getenv( "JOLIE_HOME" );
String args[] = "-l ./lib/*:$JOLIE_HOME/lib:$JOLIE_HOME/javaServices/*:$JOLIE_HOME/extensions/* -i $JOLIE_HOME/include main.ol".replaceAll( "\\$JOLIE_HOME", jh ).split( " " );
final Interpreter interpreter = new Interpreter( args, this.class.getClassLoader() );

Now you just need to use the run method of the interpreter object you have just created. Here I do it in a separate thread, as that method will return only when the Jolie program terminates. This is a toy example so I am disregarding exceptions here, but you should obviously care about them in real-world code:

Thread t = new Thread( () -> {
try { interpreter.run(); }
catch( Exception e ) { /* Handle e.. */ }
} );
t.setContextClassLoader( interpreter.getClassLoader() );
t.start();

If you need to stop the interpreter manually, you can use the exit method it comes with. It takes a hard timeout if you need one. Enjoy your Jolie interpreter inside of Java!