jlolling / jarloader

Function to load jars dynamically by java agents

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jarloader

Function to load jars dynamically by java agents.

You have to add the jarloader-.jar file path to the JVM with the JVM command line parameter

java -javaagent:/path/to/jarloader-1.0.jar -jar your_app.jar 

Also add this file to the normal classpath of your application.

In your code you can load a jar file with:

File jarFile = new File(pathToJar);
de.jlo.talendcomp.loadjaragent.JarLoader.addJarToClassPath(jarFile);

About

Function to load jars dynamically by java agents


Languages

Language:Java 100.0%