Running standalone applications

Add -agentpath: to the JVM command line. Here are the libraries to call:

Windows 64-bit JDK

java -agentpath:C:\JRebel\lib\jrebel64.dll com.example.Main

Windows 32-bit JDK

java -agentpath:C:\JRebel\lib\jrebel32.dll com.example.Main

Mac OS X 64-bit JDK

java -agentpath:/home/user/jrebel/lib/libjrebel64.dylib com.example.Main

Mac OS X 32-bit JDK

java -agentpath:/home/user/jrebel/lib/libjrebel32.dylib com.example.Main

Linux 64-bit JDK

java -agentpath:/home/user/jrebel/lib/libjrebel64.so com.example.Main

Linux 32-bit JDK

java -agentpath:/home/user/jrebel/lib/libjrebel32.so com.example.Main