Java#

The Antithesis platform can automatically instrument compiled Java code by means of bytecode weaving. No changes to your source code or build system are required. Simply tell us which directories of your container image contain the JARs you wish to instrument, and whether you want to instrument only certain JARs. For example, you may want to exclude log4j-*, spring-*, or commons-* JARs from instrumentation. It is possible to separately instrument different Java applications in a single image, say, a client and a server, or applications in different images.

It is also possible to instrument JARs within a WAR. Instrumenting separate .class files is not currently supported.

Starting your JARs#

The Antithesis instrumentor will create additional dependencies for the application. Antithesis injects these dependency JARs at the same path as the main application JAR, so you will need to add that folder to your classpath.

For example, if you are starting the app in /opt/app/bin/sample_app.jar, then we will require /opt/app/bin/* to be on the classpath.

This means invoking your app JAR like:

java -ea -cp "/opt/app/bin/*" com.your_org.sample_app.controller.Method

This ensures that you are scanning the classpath that includes the Antithesis-injected dependencies, as well as invoking the main program method.

The following invocation will not work:

java -jar /opt/app/bin/sample_app.jar

Symbolization#

Antithesis will automatically gather the symbol information from your code. You do not need to separately provide us with symbol files.

Help#

Contact us if you need help with this.