Quick start

Download the latest jar from GitHub. When starting your Java application, you need to add the jar to the classpath, use our custom class loader and java agent. So it should look something like:

-cp "path-to-jhcr-jar/jhcr-x.x.x.jar" -Djava.system.class.loader=com.illucrum.tools.jhcr.loader.JHCRClassLoader -javaagent:path-to-jhcr-jar/jhcr-x.x.x.jar

You can pass arguments to the agent to customize your experience. You can pass a string with key=value entries separated by semicolons. For example:

-javaagent:path-to-jhcr-jar/jhcr-x.x.x.jar=key1=value1;key2=value2

You can find a list of all supported arguments on its own page.

Updated on