...
The JVMTI works by using agents that communicate with the running JVM. These agents are usually loaded at JVM startup via one of the command line options -agentlib
or -agentpath
.
Code Block | ||
---|---|---|
| ||
${JDK_PATH}/bin/java -agentlib:libname ApplicationName
|
...
To be compliant, do not start the JVM with any agents enabled.
Code Block | ||
---|---|---|
| ||
${JDK_PATH}/bin/java -Djava.security.manager ApplicationName
|
...