Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 607 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 607 Bytes

javaagent-example

Example of how to instrument the java class files on class loading. You can change(instrument) the byte code without changing the java source file and recompiling.

Usage

Package the agent jar file.

mvn clean package

Find the packaged jar file in target directory and add it to the java command line options. For example.

java -javaagent:/Users/liuzhengyang/Code/opensource/github/javaagent/target/javaagent-1.0-SNAPSHOT-jar-with-dependencies.jar Test

Most processing happens in com.lzy.javaagent.AgentMain, you can change it and add your own logic.

Have Fun!